| 123456789101112131415 |
- using Quadarax.Application.QLiberace.Base.Entities.Interfaces;
- using Quadarax.Application.QLiberace.Common.Entities.Base;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace Quadarax.Application.QLiberace.Base.Entities
- {
- [Table(Constants.Modules.Base.TblTenant,Schema = Constants.Modules.Base.Schema)]
- public class Tenant : QlbrcEntityTrackedWithId, IStructTenant
- {
- public string Code { get; set; }
- public string Name { get; set; }
- public DateTime? LastAccess { get; set; }
- public bool IsLocked { get; set; }
- }
- }
|