mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-13 20:09:12 +00:00
14 lines
280 B
C#
14 lines
280 B
C#
![]() |
using SQLite;
|
||
|
namespace ServiceLib.Models;
|
||
|
|
||
|
[Serializable]
|
||
|
public class ProfileGroupItem
|
||
|
{
|
||
|
[PrimaryKey]
|
||
|
public string ParentIndexId { get; set; }
|
||
|
|
||
|
public string ChildItems { get; set; }
|
||
|
|
||
|
public EMultipleLoad MultipleLoad { get; set; } = EMultipleLoad.LeastPing;
|
||
|
}
|