16 lines
344 B
C#
16 lines
344 B
C#
{bedad67ea493f0fcec3a9543690337e37524cf7c true 344 ServerDto.cs 0xc002b749a0}
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; }
|
|
}
|
|
}
|