From 60a278c41f831476bf06d35db37b5213795e1ade Mon Sep 17 00:00:00 2001 From: softworkz Date: Sun, 9 Nov 2025 12:47:56 +0100 Subject: [PATCH] Cookie: Fix formatting --- src/ElectronNET.API/API/Entities/Cookie.cs | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) 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