Files

12 lines
284 B
C#

namespace MapoDataFiller
{
public class SimBlock
{
#region Public Properties
public List<string> EvList { get; set; } = new List<string>();
public List<string> FlList { get; set; } = new List<string>();
#endregion Public Properties
}
}