18 lines
415 B
C#
18 lines
415 B
C#
using MapoSDK;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOB_UT_NEXT
|
|
{
|
|
public class plcMemMapExt : plcMemMap
|
|
{
|
|
public Dictionary<string, string> optMemPar { get; set; } = new Dictionary<string, string>();
|
|
public Dictionary<string, int> fileDecod { get; set; } = new Dictionary<string, int>();
|
|
}
|
|
|
|
|
|
}
|