Files
timetracker/timetracker.Shared/TenantInfo.cs
T
2026-06-24 23:48:04 +02:00

12 lines
314 B
C#

namespace timetracker.Shared;
public class TenantInfo
{
public bool IsTenant { get; set; }
public string? Name { get; set; }
public string? Subdomain { get; set; }
public bool IsApproved { get; set; }
public string? PrimaryColor { get; set; }
public string? SecondaryColor { get; set; }
}