yavsc/src/Yavsc.Server/ViewModels/Auth/ViewFileContext.cs

12 lines
255 B
C#
Raw Normal View History

2023-03-19 17:57:55 +00:00
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; }
}
2023-03-19 17:57:55 +00:00
}