Files
StandardSence/StandardScene.Core/Model/PlanRulesSetting.cs
T
2026-06-14 11:19:15 +08:00

18 lines
375 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StandardScene.Model
{
public class PlanRulesSetting
{
public string Name { get; set; }
public string Description { get; set; }
public string Value { get; set; }
public string NodeId { get; set; }
}
}