3f63281dc4
Also UI style, theme and element changes
19 lines
487 B
C#
19 lines
487 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Disco.Models.UI.Config.DocumentTemplate
|
|
{
|
|
public interface ConfigDocumentTemplateShowModel : BaseUIModel
|
|
{
|
|
Disco.Models.Repository.DocumentTemplate DocumentTemplate { get; set; }
|
|
int StoredInstanceCount { get; set; }
|
|
|
|
List<Disco.Models.Repository.JobType> JobTypes { get; set; }
|
|
|
|
List<string> Scopes { get; }
|
|
}
|
|
}
|