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.
BookingHeChuan/Myshipping.Core/Enum/NoticeType.cs

25 lines
404 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Core;
public enum NoticeType
{
/// <summary>
/// 通知
/// </summary>
[Description("通知")]
NOTICE = 1,
/// <summary>
/// 公告
/// </summary>
[Description("公告")]
ANNOUNCEMENT = 2,
}