namespace ElectronNET.API.Entities
{
public class LoadURLOptions
{
///
/// A HTTP Referrer url.
///
public string HttpReferrer { get; set; }
///
/// A user agent originating the request.
///
public string UserAgent { get; set; }
///
/// Base url (with trailing path separator) for files to be loaded by the data url.
/// This is needed only if the specified url is a data url and needs to load other
/// files.
///
public string BaseURLForDataURL { get; set; }
}
}