fixe du style, des trads, et touche le WF
This commit is contained in:
parent
ebed4d2c50
commit
1dbd98b680
10 changed files with 478 additions and 113 deletions
|
|
@ -1,15 +1,54 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Yavsc
|
||||
{
|
||||
public class WorkflowReference {
|
||||
/// <summary>
|
||||
/// Friendly name for this kind of service
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
string DisplayName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Service code found in the catalog
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[Key]
|
||||
string SpecificationCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Moderation settings
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
string ModeratorGroupName { get; set; }
|
||||
}
|
||||
|
||||
public class SiteSettings
|
||||
{
|
||||
public string Title { get; set; }
|
||||
public string Slogan { get; set; }
|
||||
/// <summary>
|
||||
/// Conceptually,
|
||||
/// This authorisation server only has this present site as unique audience.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public string Audience { get; set; }
|
||||
/// <summary>
|
||||
/// it's a very small company, with one domaine name only,
|
||||
/// so let it be the same as in the Audience field.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public string Authority { get; set; }
|
||||
public EmailEntry Owner { get; set; }
|
||||
public EmailEntry Admin { get; set; }
|
||||
public ThirdPartyFiles UserFiles { get; set; }
|
||||
/// <summary>
|
||||
/// Configured services
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public List<WorkflowReference> WorkFlow { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue