16 lines
572 B
C#
16 lines
572 B
C#
namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateVersion.Get
|
|
{
|
|
public class GetTemplateVersionDto : BaseDetailsDto
|
|
{
|
|
public Guid TemplateId { get; set; }
|
|
public string Version { get; set; } = string.Empty;
|
|
public string JsonData { get; set; } = "{}";
|
|
public string JsonHash { get; set; } = string.Empty;
|
|
public string SchemaVersion { get; set; } = "1.0";
|
|
public bool IsPublished { get; set; }
|
|
public DateTime? PublishedAt { get; set; }
|
|
public string? PublishedBy { get; set; }
|
|
}
|
|
}
|
|
|