using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Result.App.FileLibrary
{
///
/// 文件返回
///
public class FileLibraryResult
{
///
/// ID
///
public int Id { get; set; }
///
/// 文件名
///
public string FileName { get; set; }
///
/// 文件类型
///
public string FileType { get; set; }
///
/// 文件服务器地址
///
public string FileUrl { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 时间
///
public DateTime? CreatedData { get; set; }
///
/// 文件大小
///
///
public int Size { get; set; }
}
}