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.
47 lines
978 B
C#
47 lines
978 B
C#
using Furion.ConfigurableOptions;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.ConfigOption
|
|
{
|
|
/// <summary>
|
|
/// 订舱模块附件配置
|
|
/// </summary>
|
|
public class BookingFileOptions : IConfigurableOptions
|
|
{
|
|
/// <summary>
|
|
/// 基础路径
|
|
/// </summary>
|
|
public string basePath { get; set; }
|
|
|
|
/// <summary>
|
|
/// 相对路径
|
|
/// </summary>
|
|
public string relativePath { get; set; }
|
|
|
|
/// <summary>
|
|
/// 类型
|
|
/// </summary>
|
|
public string[] fileType { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 打印模板文件配置
|
|
/// </summary>
|
|
public class PrintTemplateOptions : BookingFileOptions
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 订舱附件文件配置
|
|
/// </summary>
|
|
public class BookingAttachOptions : BookingFileOptions
|
|
{
|
|
|
|
}
|
|
}
|