aboutsummaryrefslogtreecommitdiff
path: root/VNLib.Data.Caching.Extensions/ActiveServer.cs
blob: e4d73c13ce7b25a9f2664a5728439a0d43b9af1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Text.Json.Serialization;

namespace VNLib.Data.Caching.Extensions
{
    public class ActiveServer
    {
        [JsonPropertyName("address")]
        public string? HostName { get; set; }
        [JsonPropertyName("server_id")]
        public string? ServerId { get; set; }
        [JsonPropertyName("ip_address")]
        public string? Ip { get; set; }
    }
}