multi-tenant implementierung
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace timetracker.Shared;
|
||||
|
||||
public class Tenant
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; } = "";
|
||||
public string Subdomain { get; set; } = "";
|
||||
public bool IsApproved { get; set; }
|
||||
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
||||
public string PrimaryColor { get; set; } = "#0EA5E9";
|
||||
public string SecondaryColor { get; set; } = "#0EA5E9";
|
||||
}
|
||||
Reference in New Issue
Block a user