Files
T-DAS/Epost.Model/ParameterModel.cs

39 lines
1.5 KiB
C#
Raw Permalink Normal View History

2023-01-13 15:30:20 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model
{
public class ParameterModel
{
string no = string.Empty;
string lightcolor = string.Empty;
string isTwinkle = string.Empty;//是否闪烁
string type = string.Empty;//标签类型
string title = string.Empty;
string location = string.Empty;
string bigQuantity = string.Empty;
string quantity = string.Empty;
string bigUnit = string.Empty;
string unit = string.Empty;
string content = string.Empty;
string rfcode = string.Empty;
public string No { get => no; set => no = value; }
public string Lightcolor { get => lightcolor; set => lightcolor = value; }
public string IsTwinkle { get => isTwinkle; set => isTwinkle = value; }
public string Type { get => type; set => type = value; }
public string Title { get => title; set => title = value; }
public string Location { get => location; set => location = value; }
public string BigQuantity { get => bigQuantity; set => bigQuantity = value; }
public string Quantity { get => quantity; set => quantity = value; }
public string BigUnit { get => bigUnit; set => bigUnit = value; }
public string Content { get => content; set => content = value; }
public string Rfcode { get => rfcode; set => rfcode = value; }
public string Unit { get => unit; set => unit = value; }
}
}