Tenant.cs 643 B

1234567891011121314151617181920212223242526
  1. using Microsoft.EntityFrameworkCore;
  2. using Quadarax.Application.QLiberace.Base.Entities.Interfaces;
  3. using Quadarax.Application.QLiberace.Common.Entities.Base;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.ComponentModel.DataAnnotations.Schema;
  6. namespace Quadarax.Application.QLiberace.Base.Entities
  7. {
  8. public class Tenant : QlbrcEntityTracked, IStructTenant
  9. {
  10. public string Code { get; set; } = null!;
  11. public string Name { get; set; } = null!;
  12. public DateTime? LastAccess { get; set; }
  13. public bool IsLocked { get; set; }
  14. public Tenant()
  15. {
  16. }
  17. }
  18. }