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

14 lines
303 B
C#

namespace Giants.DataContract
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
public class ServerInfoWithHostAddress : ServerInfo
{
[Required]
public string HostIpAddress { get; set; }
}
}