v2rayN/v2rayN/ServiceLib/Models/Entities/SubItem.cs

37 lines
746 B
C#
Raw Normal View History

namespace ServiceLib.Models.Entities;
[Serializable]
public class SubItem
2023-01-01 11:42:01 +00:00
{
[PrimaryKey]
public string Id { get; set; }
public string Remarks { get; set; }
public string Url { get; set; }
public string MoreUrl { get; set; }
public bool Enabled { get; set; } = true;
2023-01-01 11:42:01 +00:00
public string UserAgent { get; set; } = string.Empty;
2023-01-01 11:42:01 +00:00
public int Sort { get; set; }
2023-01-01 11:42:01 +00:00
public string? Filter { get; set; }
2023-01-01 11:42:01 +00:00
public int AutoUpdateInterval { get; set; }
public long UpdateTime { get; set; }
public string? ConvertTarget { get; set; }
2023-12-23 12:57:31 +00:00
public string? PrevProfile { get; set; }
2023-12-23 12:57:31 +00:00
public string? NextProfile { get; set; }
public int? PreSocksPort { get; set; }
public string? Memo { get; set; }
}