You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
328 B
C#

2 months ago
using System;
using System.Collections.Generic;
using System.Text;
namespace SlnMesnac.Model.domain
{
public class DeviceInfo
{
public string IPAddress { get; set; }
2 months ago
public string EQUID { get; set; }
2 months ago
public string position { get; set; }
2 months ago
public string ApiPort { get; set; }
2 months ago
}
}