namespace ElectronNET.API.Entities { /// /// /// public class UploadRawData : IPostData { /// /// The data is available as a Buffer, in the rawData field. /// public string Type { get; } = "rawData"; /// /// The raw bytes of the post data in a Buffer. /// public byte[] Bytes { get; set; } } }