1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-09-28 01:42:14 +02:00
GiantsTools/Giants.Services/Core/Entities/ServerInfo.cs
2020-08-07 23:53:35 -07:00

12 lines
221 B
C#

namespace Giants.Services
{
using System;
public class ServerInfo : DataContract.ServerInfo
{
public string HostIpAddress { get; set; }
public DateTime LastHeartbeat { get; set; }
}
}