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
303 B
C#
Raw Normal View History

namespace Giants.DataContract
{
using System;
using System.Collections.Generic;
2020-08-08 09:07:11 +02:00
using System.ComponentModel.DataAnnotations;
using System.Text;
2020-08-08 09:07:11 +02:00
public class ServerInfoWithHostAddress : ServerInfo
{
2020-08-08 09:07:11 +02:00
[Required]
public string HostIpAddress { get; set; }
}
}