mirror of
https://github.com/2dust/v2rayN.git
synced 2026-09-26 16:38:40 +03:00
* feat: update node IP and delay info on connect * Adjust --------- Co-authored-by: 2dust <31833384+2dust@users.noreply.github.com>
6 lines
169 B
C#
6 lines
169 B
C#
namespace ServiceLib.Models.Dto;
|
|
|
|
public sealed record AvailabilityCheckResult(int Time, string Ip)
|
|
{
|
|
public string? GetValidIp() => Ip == Global.None ? null : Ip;
|
|
} |