Files
2dust_v2rayN/v2rayN/ServiceLib/Models/Entities/SubItem.cs
T
DHR60and2dust eff584597f Add custom outbound support (#9817)
* Add custom outbound support

* Add test

* Add inner fmt support

* Full config to outbounds

* Rename to `Outbound`

* AI optimized

* Fix

* Add bind interface placeholder

---------

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

39 lines
798 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 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; }
}