using System.Collections.Generic; namespace Disco.Models.UI.Config.DocumentTemplate { public interface ConfigDocumentTemplateCreateModel : BaseUIModel { string Id { get; set; } string Description { get; set; } string Scope { get; set; } List Types { get; set; } List SubTypes { get; set; } List JobTypes { get; set; } List JobSubTypes { get; set; } List Scopes { get; } List GetJobTypes(); List GetJobSubTypes(); } }