Skip to content

Commit 60a278c

Browse files
committed
Cookie: Fix formatting
1 parent 9d25795 commit 60a278c

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/ElectronNET.API/API/Entities/Cookie.cs

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
namespace ElectronNET.API.Entities {
1+
namespace ElectronNET.API.Entities
2+
{
23
/// <summary>
34
///
45
/// </summary>
5-
public class Cookie {
6+
public class Cookie
7+
{
68
/// <summary>
79
/// The name of the cookie.
810
/// </summary>
9-
public string Name { get; set;}
11+
public string Name { get; set; }
1012

1113
/// <summary>
1214
/// The value of the cookie.
@@ -26,7 +28,7 @@ public class Cookie {
2628
/// <summary>
2729
/// (optional) - The path of the cookie.
2830
/// </summary>
29-
public string Path { get; set; }
31+
public string Path { get; set; }
3032

3133
/// <summary>
3234
/// (optional) - Whether the cookie is marked as secure.
@@ -36,7 +38,7 @@ public class Cookie {
3638
/// <summary>
3739
/// (optional) - Whether the cookie is marked as HTTP only.
3840
/// </summary>
39-
public bool HttpOnly { get; set; }
41+
public bool HttpOnly { get; set; }
4042

4143
/// <summary>
4244
/// (optional) - Whether the cookie is a session cookie or a persistent cookie with an expiration date.
@@ -48,4 +50,4 @@ public class Cookie {
4850
/// </summary>
4951
public long ExpirationDate { get; set; }
5052
}
51-
}
53+
}

0 commit comments

Comments
 (0)