namespace ElectronNET.API.Entities
{
///
/// Represents a postData item for loadURL/webContents.loadURL options.
/// Valid types per Electron docs: 'rawData' and 'file'.
///
/// Up-to-date with Electron API 39.2
public interface IPostData
{
///
/// One of the following:
/// rawData - .
/// file - .
/// Based on Electron postData definitions.
///
public string Type { get; }
}
}