This commit is contained in:
16
server/models/dto/UploadedFileInfo.cs
Normal file
16
server/models/dto/UploadedFileInfo.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
namespace Sockeye.Models
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Uploaded file info in it's temporary state
|
||||
/// </summary>
|
||||
public class UploadedFileInfo
|
||||
{
|
||||
public string InitialUploadedPathName { get; set; }
|
||||
public string OriginalFileName { get; set; }
|
||||
public string MimeType { get; set; }
|
||||
public DateTime LastModified {get;set;}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user