1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-26 08:01:45 +02:00
GiantsTools/Giants.Services/Core/Entities/ServerInfo.cs

17 lines
380 B
C#
Raw Normal View History

namespace Giants.Services
{
using System;
2020-08-09 01:31:16 +02:00
using Giants.Services.Core.Entities;
2020-08-09 01:31:16 +02:00
public class ServerInfo : DataContract.ServerInfo, IIdentifiable
{
2020-08-09 01:31:16 +02:00
public string id => HostIpAddress;
public string HostIpAddress { get; set; }
public DateTime LastHeartbeat { get; set; }
2020-08-09 01:31:16 +02:00
public string DocumentType => nameof(ServerInfo);
}
}