| 12345678910111213 |
- using Quadarax.Application.QLiberace.Base.Entities.Interfaces;
- using Quadarax.Application.QLiberace.Common.Entities.Base;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace Quadarax.Application.QLiberace.Base.Entities
- {
- [Table(Constants.Modules.Base.TblUser,Schema = Constants.Modules.Base.Schema)]
- public class User : QlbrcEntityTrackedWithId, IStructUser
- {
- public string LoginName { get; set; }
- public bool IsLocked { get; set; }
- }
- }
|