13 lines
403 B
C#
13 lines
403 B
C#
namespace line_gestao_api.Models;
|
|
|
|
public class Tenant
|
|
{
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
public string NomeOficial { get; set; } = string.Empty;
|
|
public bool IsSystem { get; set; }
|
|
public bool Ativo { get; set; } = true;
|
|
public string? SourceType { get; set; }
|
|
public string? SourceKey { get; set; }
|
|
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
|
}
|