Files
mapo-core/MP.Data/DTO/IobInfoDTO.cs
T
2023-10-05 17:46:41 +02:00

16 lines
334 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MP.Data.DTO
{
public class IobInfoDTO
{
public string name { get; set; } = "ND";
public string IP { get; set; } = "::1";
public string iType { get; set; } = "Win";
}
}