- using System;
- using InABox.Core;
- namespace PRSDesktop
- {
- public class UserTokenItem : BaseObject
- {
- public Guid ID { get; set; }
- public string Group { get; set; }
- public string Code { get; set; }
- public string Description { get; set; }
- public bool Default { get; set; }
- public bool HasValue { get; set; }
- public bool Value { get; set; }
- }
- }
|