/// <summary>
 /// Initializes a new instance of the <see cref="PublicSettings" /> class.
 /// </summary>
 /// <param name="ProjectId">ProjectId.</param>
 /// <param name="SystemLanguage">SystemLanguage.</param>
 /// <param name="ProjectConsoleUrl">ProjectConsoleUrl.</param>
 /// <param name="FlowExecutionPanelUrl">FlowExecutionPanelUrl.</param>
 public PublicSettings(string ProjectId = default(string), LanguageReference SystemLanguage = default(LanguageReference), string ProjectConsoleUrl = default(string), string FlowExecutionPanelUrl = default(string))
 {
     this.ProjectId             = ProjectId;
     this.SystemLanguage        = SystemLanguage;
     this.ProjectConsoleUrl     = ProjectConsoleUrl;
     this.FlowExecutionPanelUrl = FlowExecutionPanelUrl;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ProjectSettings" /> class.
 /// </summary>
 /// <param name="DisplayName">DisplayName.</param>
 /// <param name="Description">Description.</param>
 /// <param name="Initialized">Initialized.</param>
 /// <param name="TimeZone">TimeZone.</param>
 /// <param name="SystemLanguage">SystemLanguage.</param>
 /// <param name="DefaultPriority">DefaultPriority.</param>
 public ProjectSettings(string DisplayName = default(string), string Description = default(string), bool?Initialized = default(bool?), string TimeZone = default(string), LanguageReference SystemLanguage = default(LanguageReference), int?DefaultPriority = default(int?))
 {
     this.DisplayName     = DisplayName;
     this.Description     = Description;
     this.Initialized     = Initialized;
     this.TimeZone        = TimeZone;
     this.SystemLanguage  = SystemLanguage;
     this.DefaultPriority = DefaultPriority;
 }