mirror of
https://github.com/2dust/v2rayN.git
synced 2026-02-28 21:23:04 +00:00
22 lines
535 B
C#
22 lines
535 B
C#
namespace ServiceLib.Models;
|
|
|
|
[Obsolete("Use ProtocolExtraItem instead.")]
|
|
[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);
|
|
}
|
|
}
|