using System.ComponentModel.DataAnnotations; using WTA.Shared.Attributes; using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.Tenants; [Hidden] [Tenants] public class Tenant : BaseEntity { public string Name { get; set; } = null!; public string Number { get; set; } = null!; [Required] public bool? DataBaseCreated { get; set; } public List ConnectionStrings { get; set; } = new List(); }