HuanMengAdmin/admin-server/MiaoYu.Core/Files/FileContextInfo.cs
2024-07-19 02:05:38 +08:00

16 lines
328 B
C#

namespace MiaoYu.Core.Files;
public class FileContextInfo
{
public Exception Exception { get; set; }
public string? FileName { get; set; }
public string? FileRoot { get; set; }
public FileContextStates State { get; set; }
public string? FullName { get; set; }
public string? OldName { get; set; }
}