mirror of https://github.com/icedream/npsharp.git
15 lines
246 B
C#
15 lines
246 B
C#
|
using System;
|
|||
|
|
|||
|
namespace NPSharp.RPC.Messages
|
|||
|
{
|
|||
|
internal sealed class PacketAttribute : Attribute
|
|||
|
{
|
|||
|
public PacketAttribute(uint type)
|
|||
|
{
|
|||
|
Type = type;
|
|||
|
}
|
|||
|
|
|||
|
public uint Type { get; set; }
|
|||
|
}
|
|||
|
}
|