Files
yavsc/Yavsc/ViewModels/Auth/ViewFileContext.cs
Paul Schneider 5f26e97f0a preparing to feed abstract
test should run ok [modulo config]
2018-07-16 00:31:32 +02:00

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; }
}
}