namespace ElectronNET.API.Entities
{
///
///
///
/// Up-to-date with Electron API 39.2
public class ClearStorageDataOptions
{
///
/// Should follow window.location.origin’s representation scheme://host:port.
///
public string Origin { get; set; }
///
/// The types of storages to clear. Can contain: cookies, filesystem, indexdb,
/// localstorage, shadercache, websql, serviceworkers, cachestorage.
/// If not specified, all storage types are cleared.
///
public string[] Storages { get; set; }
///
/// The types of quotas to clear. Can contain: temporary. If not specified,
/// all quotas are cleared. The quotas option is deprecated;
/// "temporary" is the only remaining supported quota type.
///
public string[] Quotas { get; set; }
}
}