using System; namespace Myshipping.Application { /// /// 订舱模板输出参数 /// public class BookingTemplateOutput { /// /// 主键 /// public long Id { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 类型 /// public BookingTemplateType Type { get; set; } /// /// 模板内容 /// public string Content { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 租户ID /// public long TenantId { get; set; } } }