| 123456789101112131415161718 |
- using Quadarax.Application.QLiberace.Base.Entities.Interfaces;
- using Quadarax.Application.QLiberace.Common.Entities.Base;
- namespace Quadarax.Application.QLiberace.Base.Entities
- {
- public class User : QlbrcEntityTracked, IStructUser
- {
- public string LoginName { get; set; } = null!;
- public bool IsLocked { get; set; }
- public User()
- {
- }
- }
- }
|