mirror of
https://github.com/2dust/v2rayN.git
synced 2025-05-15 20:58:07 +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; }
|
|
}
|
|
} |