yavsc/src/Yavsc.Server/ViewModels/Auth/ViewFileContext.cs
Paul Schneider 8e8f4d3896 refactoring
2025-02-14 22:44:33 +00:00

12 lines
255 B
C#

using Microsoft.Extensions.FileProviders;
namespace Yavsc.ViewModels.Auth
{
public class ViewFileContext
{
public string UserName { get; set; }
public IFileInfo File { get; set; }
public string Path { get; set; }
}
}