mirror of
https://github.com/2dust/v2rayN.git
synced 2025-11-29 19:23:11 +00:00
37 lines
No EOL
793 B
C#
37 lines
No EOL
793 B
C#
using SQLite;
|
|
|
|
namespace ServiceLib.Models
|
|
{
|
|
[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 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; }
|
|
}
|
|
} |