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.
42 lines
1008 B
C#
42 lines
1008 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>
|
|
/// Booking Confirmation
|
|
/// </summary>
|
|
[Description("Booking Amendment")]
|
|
BC_MODIFY,
|
|
/// <summary>
|
|
/// Booking Confirmation通知
|
|
/// </summary>
|
|
[Description("Booking Amendment Notice")]
|
|
BC_MODIFY_NOTICE,
|
|
/// <summary>
|
|
/// 空
|
|
/// </summary>
|
|
[Description("NONE")]
|
|
NONE,
|
|
}
|
|
}
|