You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Rs.DeweyTester/Rs.DeweyTester/Commom/ParameterInitAttribute.cs

24 lines
664 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Rs.MotionPlat.Commom
{
public class ParameterInitAttribute:Attribute
{
public ParameterInitAttribute(string fieldType,string fieldValue,string category,string desc)
{
this.FieldType= fieldType;
this.FieldValue= fieldValue;
this.Category= category;
this.Desc= desc;
}
public string FieldType { get; set; }
public string FieldValue { get; set; }
public string Category { get; set; }
public string Desc { get; set; }
}
}