21 lines
479 B
C#
21 lines
479 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_boot_strategy
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<boot_strategyData> data { get; set; }
|
|
}
|
|
public class boot_strategyData
|
|
{
|
|
public string StrategyName { get; set; }
|
|
public string StrategyState { get; set; }
|
|
}
|
|
}
|