11 lines
179 B
C#
11 lines
179 B
C#
namespace Finch.FileStorage;
|
|
|
|
public class FileResult
|
|
{
|
|
public string Filename { get; set; }
|
|
|
|
public string Path { get; set; }
|
|
|
|
public string ContentType { get; set; }
|
|
}
|