namespace ElectronNET.API.Entities
{
///
///
///
/// Up-to-date with Electron API 39.2
public class UploadRawData : IPostData
{
///
/// Gets the type discriminator; constant 'rawData'.
///
public string Type { get; } = "rawData";
///
/// Gets or sets the data to be uploaded as raw bytes (Electron Buffer).
///
public byte[] Bytes { get; set; }
}
}