blob: 15e0be066654a460dc0ac6b13bf6a0d97816bbf8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace IOL.GreatOffice.Api.Models.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; }
}
|