using System;
namespace GxPress.Result
{
///
/// 文件结果
///
public class PathResult
{
/// 相对路径
public string RelativePath { get; set; }
/// 绝对路径
public string AbsolutePath { get; set; }
///
/// 文件名称
///
public string FileName { get; set; }
///
/// 文件类型
///
public string FileType { get; set; }
public int FileId { get; set; }
}
}