namespace Netch.Models;
public class Subscription
{
///
/// 启用状态
///
public bool Enable { get; set; } = true;
///
/// 链接
///
public string Link { get; set; } = string.Empty;
///
/// 备注
///
public string Remark { get; set; } = string.Empty;
///
/// User Agent
///
public string UserAgent { get; set; } = string.Empty;
}