Tenant.cs 360 B

123456789101112
  1. using Quadarax.Application.QLiberace.Common.Entities.Base;
  2. namespace Quadarax.Application.QLiberace.Base.Entities
  3. {
  4. public class Tenant : QlbrcEntityTrackedWithId
  5. {
  6. public string Code { get; set; }
  7. public string Name { get; set; }
  8. public DateTime? LastAccess { get; set; }
  9. public bool IsLocked { get; set; }
  10. }
  11. }