kreta/Kreta.Client/FileService/Request/IFileUploadRequest.cs
2024-03-13 00:33:46 +01:00

11 lines
233 B
C#

namespace Kreta.Client.FileService.Request
{
public interface IFileUploadRequest
{
string FileName { get; }
string Path { get; }
byte[] Content { get; }
string ContentType { get; }
}
}