22 lines
516 B
C#
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; }
|
|
}
|
|
}
|