Tenant.cs 575 B

123456789101112131415
  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.TblTenant,Schema = Constants.Modules.Base.Schema)]
  7. public class Tenant : QlbrcEntityTrackedWithId, IStructTenant
  8. {
  9. public string Code { get; set; }
  10. public string Name { get; set; }
  11. public DateTime? LastAccess { get; set; }
  12. public bool IsLocked { get; set; }
  13. }
  14. }