21 lines
356 B
C#
21 lines
356 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DataClient.Struct
|
|||
|
{
|
|||
|
public class TechCyclesParams
|
|||
|
{
|
|||
|
public sbyte[] Index { get; set; }
|
|||
|
public string[] Colors { get; set; }
|
|||
|
public string[] Names { get; set; }
|
|||
|
public TechCyclesParams()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|