mirror of
https://github.com/2dust/v2rayN.git
synced 2025-12-01 20:23:02 +00:00
Because ProfileGroupItem is an extension of ProfileItem, it is better to name the fields the same way.
14 lines
275 B
C#
14 lines
275 B
C#
using SQLite;
|
|
|
|
namespace ServiceLib.Models;
|
|
|
|
[Serializable]
|
|
public class ProfileGroupItem
|
|
{
|
|
[PrimaryKey]
|
|
public string IndexId { get; set; }
|
|
|
|
public string ChildItems { get; set; }
|
|
|
|
public EMultipleLoad MultipleLoad { get; set; } = EMultipleLoad.LeastPing;
|
|
}
|