| 1234567891011121314151617181920212223242526 |
- using Microsoft.EntityFrameworkCore;
- using Quadarax.Application.QLiberace.Base.Entities.Interfaces;
- using Quadarax.Application.QLiberace.Common.Entities.Base;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace Quadarax.Application.QLiberace.Base.Entities
- {
- public class Tenant : QlbrcEntityTracked, IStructTenant
- {
- public string Code { get; set; } = null!;
- public string Name { get; set; } = null!;
- public DateTime? LastAccess { get; set; }
- public bool IsLocked { get; set; }
-
- public Tenant()
- {
- }
- }
- }
|