Manarah/Manarah.Domain/Servers/ServerDto.cs

16 lines
344 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Manarah.Domain
{
public class ServerDto
{
public string IPAddress { get; set; } = string.Empty;
public string? Description { get; set; }
public bool IsReachable { get;set; }
}
}