using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 任务附件
///
public class TaskFileDto
{
///
/// 文件路径
///
public string FilePath { get; set; }
///
/// 文件类型
///
public string FileType { get; set; }
///
/// 文件名
///
public string FileName { get; set; }
///
/// 附件类型代码 BC-Booking Confirmation
///
public string FileCategory { get; set; }
///
/// 附件类型名称 BC-Booking Confirmation
///
public string FileCategoryName { get; set; }
}
}