mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
24 lines
560 B
C#
24 lines
560 B
C#
namespace Netch.Models.Config
|
|
{
|
|
public class Subscription
|
|
{
|
|
/// <summary>
|
|
/// 启用 / 禁用
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("enabled")]
|
|
public bool Checked = true;
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("remark")]
|
|
public string Remark;
|
|
|
|
/// <summary>
|
|
/// 链接
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("address")]
|
|
public string Link;
|
|
}
|
|
}
|