namespace ElectronNET.API.Entities { /// /// /// public class Blob : IPostData { /// /// The object represents a Blob /// public string Type { get; } = "blob"; /// /// The UUID of the Blob being uploaded /// public string BlobUUID { get; set; } } }