mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-24 10:19:10 +00:00
13 lines
275 B
C#
13 lines
275 B
C#
|
namespace FSO.Server.Protocol.Voltron.DataService
|
|||
|
{
|
|||
|
[System.AttributeUsage(System.AttributeTargets.Class)]
|
|||
|
public class clsid : System.Attribute
|
|||
|
{
|
|||
|
public uint Value;
|
|||
|
|
|||
|
public clsid(uint value) {
|
|||
|
this.Value = value;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|