npsharp/src/libnpsharp/RPC/Messages/PacketAttribute.cs

15 lines
246 B
C#
Raw Normal View History

2014-05-07 15:39:49 +00:00
using System;
namespace NPSharp.RPC.Messages
2014-05-07 15:39:49 +00:00
{
internal sealed class PacketAttribute : Attribute
2014-05-07 15:39:49 +00:00
{
public PacketAttribute(uint type)
{
Type = type;
}
public uint Type { get; set; }
}
}