MailboxHandlerAttribute.cs 228 B

123456789101112
  1. namespace ETModel
  2. {
  3. public class MailboxHandlerAttribute : BaseAttribute
  4. {
  5. public MailboxType MailboxType { get; }
  6. public MailboxHandlerAttribute(MailboxType mailboxType)
  7. {
  8. this.MailboxType = mailboxType;
  9. }
  10. }
  11. }