aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Models/Database/Internal/Tenant.cs
blob: 471164df79b380f20fcd42aa7d3d0ca62681f265 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace IOL.GreatOffice.Api.Data.Database;

public class Tenant : BaseWithOwner
{
    public string Slug { get; set; }
    public string Name { get; set; }
    public string Description { get; set; }
    public string ContactEmail { get; set; }
    public Guid MasterUserId { get; set; }
    public string MasterUserPassword { get; set; }
    public ICollection<User> Users { get; set; }
}