mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-13 11:59:13 +00:00
13 lines
280 B
C#
13 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;
|
|
}
|