Files
mixtape/Finch/FileStorage/FileResult.cs
T
2026-04-07 14:23:29 +02:00

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