Files
2023-05-04 18:48:29 +02:00

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
}
}