2026-05-11 03:00:19 +00:00
|
|
|
namespace ServiceLib.Models.Entities;
|
2025-04-02 03:44:23 +00:00
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class SubItem
|
2023-01-01 11:42:01 +00:00
|
|
|
{
|
2025-04-02 03:44:23 +00:00
|
|
|
[PrimaryKey]
|
|
|
|
|
public string Id { get; set; }
|
2023-04-06 07:09:49 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public string Remarks { get; set; }
|
2023-04-06 07:09:49 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public string Url { get; set; }
|
2023-04-06 07:09:49 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public string MoreUrl { get; set; }
|
2023-04-06 07:09:49 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public bool Enabled { get; set; } = true;
|
2023-01-01 11:42:01 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public string UserAgent { get; set; } = string.Empty;
|
2023-01-01 11:42:01 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public int Sort { get; set; }
|
2023-01-01 11:42:01 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public string? Filter { get; set; }
|
2023-01-01 11:42:01 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public int AutoUpdateInterval { get; set; }
|
2023-04-10 08:00:32 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public long UpdateTime { get; set; }
|
2023-04-21 04:15:24 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public string? ConvertTarget { get; set; }
|
2023-12-23 12:57:31 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public string? PrevProfile { get; set; }
|
2023-12-23 12:57:31 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public string? NextProfile { get; set; }
|
2024-08-30 02:12:40 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public int? PreSocksPort { get; set; }
|
2024-11-04 02:42:42 +00:00
|
|
|
|
2025-04-02 03:44:23 +00:00
|
|
|
public string? Memo { get; set; }
|
|
|
|
|
}
|