Files
稔君and2dust b10c16a94a Add custom HTTP headers for subscription updates (#10118)
* Add custom HTTP headers for subscription updates

* Res

---------

Co-authored-by: 2dust <31833384+2dust@users.noreply.github.com>
2026-09-09 14:24:05 +08:00

41 lines
847 B
C#

namespace ServiceLib.Models.Entities;
[Serializable]
public class SubItem
{
[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;
public string UserAgent { get; set; } = string.Empty;
public string? RequestHeaders { get; set; }
public int Sort { get; set; }
public string? Filter { get; set; }
public int AutoUpdateInterval { get; set; }
public long UpdateTime { get; set; }
public string? ConvertTarget { get; set; }
public string? PrevProfile { get; set; }
public string? NextProfile { get; set; }
public int? PreSocksPort { get; set; }
public string? Memo { get; set; }
public ECoreType? CustomCoreType { get; set; }
}