Manarah/Manarah.Domain/Servers/Server.cs
2024-03-28 22:29:14 +00:00
Ask

15 lines
289 B
C#

{cc4c7bbbfc14a45af6b5ff25434d3b3738b1fca6 true 289 Server.cs 0xc001dfbe30}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Manarah.Domain
{
public class Server
{
public required string IPAddress { get; set; }
public string? Description { get; set; }
}
}