21 lines
504 B
C#
21 lines
504 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_strategy_compilation
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<strategy_compilationData> data { get; set; }
|
|
}
|
|
public class strategy_compilationData
|
|
{
|
|
public List<string> PlantName { get; set; }
|
|
public List<string> UnitName { get; set; }
|
|
}
|
|
}
|