namespace ElectronNET.API.Entities { /// /// /// /// Up-to-date with Electron API 39.2 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; } } }