mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 05:34:47 +00:00
10 lines
229 B
C#
10 lines
229 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
public class CookieRemovedResponse
|
|
{
|
|
public Cookie cookie {get;set;}
|
|
|
|
public CookieChangedCause cause { get; set; }
|
|
public bool removed { get; set; }
|
|
}
|
|
} |