User.cs 483 B

12345678910111213
  1. using Quadarax.Application.QLiberace.Base.Entities.Interfaces;
  2. using Quadarax.Application.QLiberace.Common.Entities.Base;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. namespace Quadarax.Application.QLiberace.Base.Entities
  5. {
  6. [Table(Constants.Modules.Base.TblUser,Schema = Constants.Modules.Base.Schema)]
  7. public class User : QlbrcEntityTrackedWithId, IStructUser
  8. {
  9. public string LoginName { get; set; }
  10. public bool IsLocked { get; set; }
  11. }
  12. }