CloudGamingAdmin/admin-server/CloudGaming.Core/Files/FileContextInfo.cs
2024-11-15 02:58:48 +08:00

16 lines
336 B
C#

namespace CloudGaming.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; }
}