mirror of
https://github.com/2dust/v2rayN.git
synced 2026-08-04 22:32:05 +03:00
* Refactor * Add hysteria2 bandwidth and hop interval support * Upgrade config version and rename * Refactor id and security * Refactor flow * Fix hy2 bbr * Fix warning CS0618 * Remove unused code * Fix hy2 migrate * Fix * Refactor * Refactor ProfileItem protocol extra handling * Refactor, use record instead of class * Hy2 SalamanderPass * Fix Tuic * Fix group * Fix Tuic * Fix hy2 Brutal Bandwidth * Clean Code * Fix * Support interval range * Add Username --------- Co-authored-by: 2dust <31833384+2dust@users.noreply.github.com>
23 lines
535 B
C#
23 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);
|
|
}
|
|
}
|