30 lines
632 B
C#
30 lines
632 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SolarPower.Models
|
|
{
|
|
public class StationReport
|
|
{
|
|
public string asd { get; set; }
|
|
}
|
|
|
|
public class PowerStationIdAndCity
|
|
{
|
|
public int PowerStationId { get; set; }
|
|
public string CityName { get; set; }
|
|
public string PowerStationName { get; set; }
|
|
}
|
|
|
|
public class Select_table
|
|
{
|
|
public int SearchType { get; set; }
|
|
public string Time { get; set; }
|
|
public int PowerStation { get; set; }
|
|
public int FormType { get; set; }
|
|
}
|
|
|
|
|
|
}
|