Files
mixtape/Finch/FileStorage/FileResult.cs
T

11 lines
179 B
C#
Raw Normal View History

2026-04-07 14:23:29 +02:00
namespace Finch.FileStorage;
2022-12-07 14:05:11 +01:00
public class FileResult
{
public string Filename { get; set; }
public string Path { get; set; }
public string ContentType { get; set; }
}