LobbyServer/LobbyServerDto/LobbyMessageAttribute.cs

7 lines
236 B
C#

namespace LobbyServerDto
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface, AllowMultiple = false, Inherited = false)]
public class LobbyMessageAttribute : Attribute
{
}
}