- using Quadarax.Application.QLiberace.Common.Entities.Base;
- namespace Quadarax.Application.QLiberace.Base.Entities
- {
- public class Tenant : QlbrcEntityTrackedWithId
- {
- public string Code { get; set; }
- public string Name { get; set; }
- public DateTime? LastAccess { get; set; }
- public bool IsLocked { get; set; }
- }
- }
|