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.
42 lines
1.1 KiB
42 lines
1.1 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Text; |
|
|
|
namespace Domain.Models.FileUploads |
|
{ |
|
public class UploadedFile |
|
{ |
|
public Guid Id { get; set; } |
|
/// <summary> |
|
/// 文件原名称 |
|
/// </summary> |
|
public string OriginalName { get; set; } |
|
/// <summary> |
|
/// 文件名 |
|
/// </summary> |
|
public string FileName { get; set; } |
|
/// <summary> |
|
/// ContentType |
|
/// </summary> |
|
public string ContentType { get; set; } |
|
/// <summary> |
|
/// 扩展名 |
|
/// </summary> |
|
public string Extension { get; set; } |
|
/// <summary> |
|
/// 文件路径 |
|
/// </summary> |
|
public string Path { get; set; } |
|
/// <summary> |
|
/// 上传时间 |
|
/// </summary> |
|
public DateTime UploadedTime { get; set; } |
|
/// <summary> |
|
/// 上传者 |
|
/// </summary> |
|
public string UploadedBy { get; set; } |
|
public bool IsDeleted { get; set; } |
|
public Guid DeleteBy { get; set; } |
|
public DateTime DeleteTime { get; set; } |
|
} |
|
}
|
|
|