18 lines
375 B
C#
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; }
|
|
}
|
|
}
|