12 lines
357 B
C#
12 lines
357 B
C#
namespace Microsoft.SelfService.Portal.Core.API.Dto.Template.Get
|
|
{
|
|
public class GetTemplateDto : BaseDto
|
|
{
|
|
public string Name { get; set; }
|
|
public Guid TemplateCategoryId { get; set; }
|
|
public string Version { get; set; }
|
|
public string Description { get; set; }
|
|
public string JSONData { get; set; }
|
|
}
|
|
}
|