mirror of
https://github.com/2dust/v2rayN.git
synced 2026-01-24 11:40:01 +05:00
22 lines
490 B
C#
22 lines
490 B
C#
namespace ServiceLib.Models;
|
|
|
|
[Serializable]
|
|
public class ProfileGroupItem
|
|
{
|
|
[PrimaryKey]
|
|
public string IndexId { get; set; }
|
|
|
|
public string ChildItems { get; set; }
|
|
|
|
public string? SubChildItems { get; set; }
|
|
|
|
public string? Filter { get; set; }
|
|
|
|
public EMultipleLoad MultipleLoad { get; set; } = EMultipleLoad.LeastPing;
|
|
|
|
public bool NotHasChild()
|
|
{
|
|
return string.IsNullOrWhiteSpace(ChildItems) && string.IsNullOrWhiteSpace(SubChildItems);
|
|
}
|
|
}
|