1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-29 09:11:45 +02:00
GiantsTools/Giants.Services/Core/Entities/ServerInfo.cs
2020-08-08 16:31:21 -07:00

17 lines
380 B
C#

namespace Giants.Services
{
using System;
using Giants.Services.Core.Entities;
public class ServerInfo : DataContract.ServerInfo, IIdentifiable
{
public string id => HostIpAddress;
public string HostIpAddress { get; set; }
public DateTime LastHeartbeat { get; set; }
public string DocumentType => nameof(ServerInfo);
}
}