diff --git a/Yavsc/src/Model/Workflow/Activity.cs b/Yavsc/src/Model/Workflow/Activity.cs index fa158653..356c4736 100644 --- a/Yavsc/src/Model/Workflow/Activity.cs +++ b/Yavsc/src/Model/Workflow/Activity.cs @@ -28,6 +28,12 @@ namespace Yavsc.Models [InverseProperty("Context")] public List Services { get; set; } + + /// + /// Moderation settings + /// + /// + string ModeratorGroupName { get; set; } } } diff --git a/Yavsc/src/Settings/SiteSettings.cs b/Yavsc/src/Settings/SiteSettings.cs index c1f3f9bf..4d90978f 100644 --- a/Yavsc/src/Settings/SiteSettings.cs +++ b/Yavsc/src/Settings/SiteSettings.cs @@ -4,27 +4,6 @@ using System.ComponentModel.DataAnnotations; namespace Yavsc { - public class WorkflowReference {  - /// - /// Friendly name for this kind of service - /// - /// - string DisplayName { get; set; } - - /// - /// Service code found in the catalog - /// - /// - [Key] - string SpecificationCode { get; set; } - - /// - /// Moderation settings - /// - /// - string ModeratorGroupName { get; set; } - } - public class SiteSettings { public string Title { get; set; } @@ -44,11 +23,6 @@ namespace Yavsc public EmailEntry Owner { get; set; } public EmailEntry Admin { get; set; } public ThirdPartyFiles UserFiles { get; set; } - /// - /// Configured services - /// - /// - public List WorkFlow { get; set; } } }