mysimulation/server/FSO.Server.Protocol/Voltron/cTSONetMessageParameter.cs

16 lines
327 B
C#
Raw Permalink Normal View History

using System;
namespace FSO.Server.Protocol.Voltron
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class cTSONetMessageParameter : Attribute
{
public object Value;
public cTSONetMessageParameter(object value)
{
this.Value = value;
}
}
}