mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 14:55:38 +01:00
17 lines
380 B
C#
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);
|
|
}
|
|
}
|