13 lines
389 B
C#
13 lines
389 B
C#
namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateVersion.Add
|
|
{
|
|
public class AddTemplateVersionDto
|
|
{
|
|
public string Version { get; set; } = "1.0.0";
|
|
public string JsonData { get; set; } = "{}";
|
|
public string SchemaVersion { get; set; } = "1.0";
|
|
public bool Publish { get; set; }
|
|
public string? PublishedBy { get; set; }
|
|
}
|
|
}
|
|
|