GiantsTools/Giants.DataContract/Contracts/ServerInfoWithHostAddress.cs

14 lines
278 B
C#

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; }
}
}