FIC_Solar/SolarPower/Models/AnalysisStationInfo.cs
2021-07-27 20:11:56 +08:00

22 lines
516 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SolarPower.Models
{
public class AnalysisStationInfo
{
}
public class PowerStationDevice
{
public int PowerStationId { get; set; }
public string CityName { get; set; }
public string PowerStationName { get; set; }
public string DeviceName { get; set; }
public string DeviceType { get; set; }
public string DeviceId { get; set; }
}
}