namespace Quadarax.Application.QLiberace.Base.Entities.Interfaces; public interface IStructTenant { string Code { get; set; } string Name { get; set; } DateTime? LastAccess { get; set; } bool IsLocked { get; set; } }