~ruther/NosSmooth

ref: ce641b85ae1ec404836182329c91b611500ea38f NosSmooth/Core/NosSmooth.Packets/Attributes/PacketListIndexAttribute.cs -rw-r--r-- 819 bytes
ce641b85 — František Boháček feat: add packet types from the packets assembly to PacketTypesRepository 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  PacketListIndexAttribute.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace NosSmooth.Packets.Attributes;

/// <summary>
/// Attribute for marking property as a packet list.
/// </summary>
public class PacketListIndexAttribute : PacketIndexAttribute
{
    /// <summary>
    /// Initializes a new instance of the <see cref="PacketListIndexAttribute"/> class.
    /// </summary>
    /// <param name="index">The position in the packet.</param>
    public PacketListIndexAttribute(ushort index)
        : base(index)
    {
    }

    /// <summary>
    /// Gets or sets the separator of the items in the array.
    /// </summary>
    public string ListSeparator { get; set; } = "|";
}
Do not follow this link