MailboxHandlerAttribute.cs 291 B

123456789101112131415
  1. namespace ETModel
  2. {
  3. public class MailboxHandlerAttribute : BaseAttribute
  4. {
  5. public AppType Type { get; }
  6. public string MailboxType { get; }
  7. public MailboxHandlerAttribute(AppType appType, string mailboxType)
  8. {
  9. this.Type = appType;
  10. this.MailboxType = mailboxType;
  11. }
  12. }
  13. }