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.
32 lines
708 B
C#
32 lines
708 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 TaskFileCategoryEnum
|
|
{
|
|
/// <summary>
|
|
/// BC-Booking Confirmation
|
|
/// </summary>
|
|
[Description("Booking Confirmation")]
|
|
BC,
|
|
/// <summary>
|
|
/// BC-Booking Confirmation通知
|
|
/// </summary>
|
|
[Description("Booking Confirmation Notice")]
|
|
BC_NOTICE,
|
|
/// <summary>
|
|
/// 空
|
|
/// </summary>
|
|
[Description("NONE")]
|
|
NONE,
|
|
}
|
|
}
|