You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
///-----------------------------------------------------------------------
|
|
/// <copyright file="FileUploadHelper.cs" company="Origtek">
|
|
/// ArsenalDBMgr belongs to Copyright (c) Origtek. All rights reserved.
|
|
/// 程式代號: FileUploadHelper
|
|
/// 程式名稱: 檔案上傳Helper
|
|
/// 程式說明: 提供上傳功能
|
|
/// 起始作者: Hercules
|
|
/// 起始日期: 2017/05/15
|
|
/// 最新修改人: Hercules
|
|
/// 最新修日期: 2017/05/18 17:45:54
|
|
/// </copyright>
|
|
///-----------------------------------------------------------------------
|
|
#region 程式異動記錄
|
|
/// xx.YYYY/MM/DD VER AUTHOR COMMENTS(說明修改的內容)
|
|
/// 01.2017/05/15 1.000 Hercules 檔案上傳 獨立成Helper(RV.4293)
|
|
/// 02.2017/05/18 1.001 Hercules 補程式Header註解(RV.4375)
|
|
#endregion
|
|
|
|
using log4net;
|
|
|
|
namespace CounsellorBL.BLStructure
|
|
{
|
|
/// <summary>
|
|
/// 類別名稱: FileUploadInfo
|
|
/// 類別說明 檔案上傳Helper必要資訊資料結構
|
|
/// 起始作者: Hercules
|
|
/// 起始日期: 2017/05/15
|
|
/// 最新修改人: Hercules
|
|
/// 最新修改日: 2017/05/15
|
|
/// </summary>
|
|
public class FileUploadInfo
|
|
{
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明RootPath
|
|
/// </summary>
|
|
public string RootPath { get; set; }
|
|
|
|
/// <summary>
|
|
/// 類別成員、類別屬性說明:Logger
|
|
/// </summary>
|
|
public ILog Logger { get; set; }
|
|
}
|
|
}
|