User.cs 272 B

12345678910
  1. using Quadarax.Application.QLiberace.Common.Entities.Base;
  2. namespace Quadarax.Application.QLiberace.Base.Entities
  3. {
  4. public class User : QlbrcEntityTrackedWithId
  5. {
  6. public string LoginName { get; set; }
  7. public bool IsLocked { get; set; }
  8. }
  9. }