maintenance unify document generation ui

This commit is contained in:
Gary Sharp
2021-01-13 15:41:51 +11:00
parent 806aadd161
commit f7fdfb0c8a
37 changed files with 1975 additions and 1973 deletions
@@ -0,0 +1,14 @@
using Disco.Models.Repository;
using Disco.Models.Services.Documents;
using Disco.Services.Plugins.Features.DocumentHandlerProvider;
using System.Collections.Generic;
namespace Disco.Web.Models.Shared
{
public class GenerateDocumentControlModel
{
public IAttachmentTarget Target { get; set; }
public List<DocumentTemplate> Templates { get; set; }
public List<DocumentTemplatePackage> TemplatePackages { get; set; }
}
}