namespace ElectronNET.API.Entities
{
///
///
///
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: appcache, cookies, filesystem,
/// indexdb, localstorage, shadercache, websql, serviceworkers, cachestorage.
///
public string[] Storages { get; set; }
///
/// The types of quotas to clear, can contain: temporary, persistent, syncable.
///
public string[] Quotas { get; set; }
}
}