Sic.Framework/MECF.Framework.Common/Aitex/Core/RT/IOCore/CustomLimitBase.cs

17 lines
375 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
using System.Collections.Generic;
namespace Aitex.Core.RT.IOCore
{
public class CustomLimitBase : InterlockLimit
{
public override bool CurrentValue { get; }
public override string LimitReason { get; }
public CustomLimitBase(string name, bool limitValue, string tip, Dictionary<string, string> cultureTip)
: base(name, limitValue, tip, cultureTip)
{
}
}
}