using Quadarax.Application.QLiberace.Base.Entities.Interfaces; namespace Quadarax.Application.QLiberace.Base.Dtos { public class TenantDto : IStructTenant { public string Code { get; set; } public string Name { get; set; } public DateTime? LastAccess { get; set; } public bool IsLocked { get; set; } } }