yavsc/Yavsc/ViewModels/Auth/ViewFileContext.cs

11 lines
249 B
C#

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