UserTokenItem.cs 410 B

12345678910111213141516
  1. using System;
  2. using InABox.Core;
  3. namespace PRSDesktop
  4. {
  5. public class UserTokenItem : BaseObject
  6. {
  7. public Guid ID { get; set; }
  8. public string Group { get; set; }
  9. public string Code { get; set; }
  10. public string Description { get; set; }
  11. public bool Default { get; set; }
  12. public bool HasValue { get; set; }
  13. public bool Value { get; set; }
  14. }
  15. }