decePubClient/Models/UploadMedia.cs
Eugenio Chiodo 5cba76554a Save
2022-02-14 01:51:52 +01:00

16 lines
389 B
C#

using System.ComponentModel;
using System.Text.Json.Serialization;
namespace decePubClient.Models;
public class UploadMedia
{
public string ContentType { get; set; }
public string FileName { get; set; }
public string AltText { get; set; }
public byte[] Blob { get; set; }
public string Base64Preview { get; set; }
[JsonIgnore, Bindable(false)]
public long Size { get; set; }
}