diff options
Diffstat (limited to 'src/Data/General/AppCookie.cs')
| -rw-r--r-- | src/Data/General/AppCookie.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Data/General/AppCookie.cs b/src/Data/General/AppCookie.cs new file mode 100644 index 0000000..afa876f --- /dev/null +++ b/src/Data/General/AppCookie.cs @@ -0,0 +1,9 @@ +namespace IOL.WebApi.Template.Data.General +{ + public sealed record AppCookie + { + public string Name { get; init; } + public string Description { get; init; } + public bool Required { get; init; } + } +} |
