blob: 3028d137a5e00400390369320ff10d2c70547fa7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
namespace IOL.GreatOffice.Api.Data.Database;
public class Tenant : BaseWithOwner
{
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; }
}
|