namespace ElectronNET.API.Entities
{
///
/// Interface to use Electrons PostData Object
///
public interface IPostData
{
///
/// One of the following:
/// rawData - The data is available as a Buffer, in the rawData field.
/// file - The object represents a file. The filePath, offset, length and modificationTime fields will be used to describe the file.
/// blob - The object represents a Blob. The blobUUID field will be used to describe the Blob.
///
public string Type { get; }
}
}