mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
rename Subscribe Link (WTF??) to Subscription Full English log Remove Debug Logging Sink Add Console Logging Sink
25 lines
583 B
C#
25 lines
583 B
C#
namespace Netch.Models
|
|
{
|
|
public class Subscription
|
|
{
|
|
/// <summary>
|
|
/// 启用状态
|
|
/// </summary>
|
|
public bool Enable { get; set; } = true;
|
|
|
|
/// <summary>
|
|
/// 链接
|
|
/// </summary>
|
|
public string Link { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Remark { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// User Agent
|
|
/// </summary>
|
|
public string UserAgent { get; set; } = string.Empty;
|
|
}
|
|
} |