17 lines
557 B
C#
17 lines
557 B
C#
|
|
namespace OTSSignsOrchestrator.Server.Data.Entities;
|
||
|
|
|
||
|
|
public class ByoiConfig
|
||
|
|
{
|
||
|
|
public Guid Id { get; set; }
|
||
|
|
public Guid InstanceId { get; set; }
|
||
|
|
public string Slug { get; set; } = string.Empty;
|
||
|
|
public string EntityId { get; set; } = string.Empty;
|
||
|
|
public string SsoUrl { get; set; } = string.Empty;
|
||
|
|
public string CertPem { get; set; } = string.Empty;
|
||
|
|
public DateTime CertExpiry { get; set; }
|
||
|
|
public bool Enabled { get; set; }
|
||
|
|
public DateTime CreatedAt { get; set; }
|
||
|
|
|
||
|
|
public Instance Instance { get; set; } = null!;
|
||
|
|
}
|