yavsc/src/Yavsc.Api.Client/BlogUploadFile.cs
2026-09-07 15:41:33 +01:00

6 lines
210 B
C#

namespace Yavsc.Api.Client;
/// <summary>
/// Buffered file payload for multipart blog uploads.
/// </summary>
public sealed record BlogUploadFile(string FileName, byte[] Content, string? ContentType = null);