This repository has been archived on 2024-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
BetterRaid_OLD/Attributes/PubSubAttribute.cs

17 lines
414 B
C#

using System;
namespace BetterRaid.Attributes;
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = true)]
public class PubSubAttribute : Attribute
{
public PubSubType Type { get; }
public string ChannelIdField { get; set; }
public PubSubAttribute(PubSubType type, string channelIdField)
{
Type = type;
ChannelIdField = channelIdField;
}
}