initial commit from an older template
This commit is contained in:
7
Services/Cookies/ICookieService.cs
Executable file
7
Services/Cookies/ICookieService.cs
Executable file
@@ -0,0 +1,7 @@
|
||||
namespace GamificationService.Services.Cookies;
|
||||
|
||||
public interface ICookieService
|
||||
{
|
||||
Task<bool> SetCookie(string key, string value, CookieOptions options);
|
||||
Task<bool> RemoveCookie(string key);
|
||||
}
|
||||
Reference in New Issue
Block a user