diff --git a/src/ElectronNET.API/API/Entities/Cookie.cs b/src/ElectronNET.API/API/Entities/Cookie.cs
index b6b37fa..d9b9b27 100644
--- a/src/ElectronNET.API/API/Entities/Cookie.cs
+++ b/src/ElectronNET.API/API/Entities/Cookie.cs
@@ -1,12 +1,14 @@
-namespace ElectronNET.API.Entities {
+namespace ElectronNET.API.Entities
+{
///
///
///
- public class Cookie {
+ public class Cookie
+ {
///
/// The name of the cookie.
///
- public string Name { get; set;}
+ public string Name { get; set; }
///
/// The value of the cookie.
@@ -26,7 +28,7 @@
///
/// (optional) - The path of the cookie.
///
- public string Path { get; set; }
+ public string Path { get; set; }
///
/// (optional) - Whether the cookie is marked as secure.
@@ -36,7 +38,7 @@
///
/// (optional) - Whether the cookie is marked as HTTP only.
///
- public bool HttpOnly { get; set; }
+ public bool HttpOnly { get; set; }
///
/// (optional) - Whether the cookie is a session cookie or a persistent cookie with an expiration date.
@@ -48,4 +50,4 @@
///
public long ExpirationDate { get; set; }
}
-}
+}
\ No newline at end of file