You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Group.cs 442 B

123456789101112131415161718
  1. namespace Shadowsocks.WPF.Models
  2. {
  3. public class Group : Shadowsocks.Models.Group
  4. {
  5. /// <summary>
  6. /// Gets or sets the URL of SIP008 online configuration delivery source.
  7. /// </summary>
  8. public string OnlineConfigSource { get; set; }
  9. public Group() : this(string.Empty)
  10. { }
  11. public Group(string name) : base(name)
  12. {
  13. OnlineConfigSource = "";
  14. }
  15. }
  16. }