1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-26 08:01:45 +02:00
GiantsTools/Giants.DataContract/Contracts/ServerInfoWithHostAddress.cs

14 lines
278 B
C#
Raw Normal View History

namespace Giants.DataContract
{
using System;
using System.Collections.Generic;
using System.Text;
public class ServerInfoWithHostAddress
{
public ServerInfo ServerInfo { get; set; }
public string HostIpAddress { get; set; }
}
}