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.
27 lines
553 B
C#
27 lines
553 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 状态推送类型枚举
|
|
/// </summary>
|
|
public enum TrackingPushTypeEnum
|
|
{
|
|
/// <summary>
|
|
/// 服务项目
|
|
/// </summary>
|
|
[Description("服务项目")]
|
|
Project,
|
|
/// <summary>
|
|
/// 服务状态
|
|
/// </summary>
|
|
[Description("服务状态")]
|
|
Status
|
|
}
|
|
}
|