mirror of https://github.com/abpframework/abp.git
14 changed files with 28 additions and 123 deletions
@ -1,13 +0,0 @@ |
|||
using System.Collections.Generic; |
|||
|
|||
namespace Volo.Docs.Documents |
|||
{ |
|||
public class DocumentPartialTemplateDto |
|||
{ |
|||
public string Name { get; set; } |
|||
|
|||
public string Path { get; set; } |
|||
|
|||
public List<string> Parameters { get; set; } |
|||
} |
|||
} |
|||
@ -1,9 +0,0 @@ |
|||
using System.Collections.Generic; |
|||
|
|||
namespace Volo.Docs.Documents |
|||
{ |
|||
public class DocumentPartialTemplatesDto |
|||
{ |
|||
public List<DocumentPartialTemplateDto> Templates { get; set; } |
|||
} |
|||
} |
|||
@ -1,19 +0,0 @@ |
|||
using System; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using Volo.Docs.Language; |
|||
using Volo.Docs.Projects; |
|||
|
|||
namespace Volo.Docs.Documents |
|||
{ |
|||
public class GetDocumentPartialTemplatesInput |
|||
{ |
|||
public Guid ProjectId { get; set; } |
|||
|
|||
[StringLength(ProjectConsts.MaxVersionNameLength)] |
|||
public string Version { get; set; } |
|||
|
|||
[Required] |
|||
[StringLength(LanguageConsts.MaxLanguageCodeLength)] |
|||
public string LanguageCode { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,9 @@ |
|||
namespace Volo.Docs.HtmlConverting |
|||
{ |
|||
public class DocumentPartialTemplateContent |
|||
{ |
|||
public string Path { get; set; } |
|||
|
|||
public string Content { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue