16 lines
344 B
C#
16 lines
344 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|