mirror of
https://github.com/2dust/v2rayN.git
synced 2026-09-26 00:07:56 +03:00
* Add custom HTTP headers for subscription updates * Res --------- Co-authored-by: 2dust <31833384+2dust@users.noreply.github.com>
41 lines
847 B
C#
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; }
|
|
}
|