Files
WatchIt/WatchIt.Common/WatchIt.Common.Model/Media/MediaPosterImage.cs

12 lines
284 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace WatchIt.Common.Model.Media;
public class MediaPosterImage
{
[JsonPropertyName("image")]
public required byte[] Image { get; set; }
[JsonPropertyName("mime_type")]
public required string MimeType { get; set; }
}