Files
T-DAS/Epost.DAL/Enum/LbType.cs
2023-01-13 15:30:20 +08:00

25 lines
501 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.DAL.Enum
{
public class LbType
{
public enum Type
{
[Description("中文标签")]
C,
[Description("数字标签")]
N,
[Description("拍灭后无显示")]
Q,
[Description("拍灭后继续显示")]
R
}
}
}