You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
466 B

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<ConnectionString> ConnectionStrings { get; set; } = new List<ConnectionString>();
}