mirror of
https://github.com/2dust/v2rayN.git
synced 2026-01-09 23:57:33 +00:00
Some checks are pending
release Linux / build (Release) (push) Waiting to run
release Linux / rpm (push) Blocked by required conditions
release macOS / build (Release) (push) Waiting to run
release Windows desktop (Avalonia UI) / build (Release) (push) Waiting to run
release Windows / build (Release) (push) Waiting to run
https://github.com/2dust/v2rayN/issues/8214
21 lines
490 B
C#
21 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);
|
|
}
|
|
}
|