diff options
Diffstat (limited to 'src/Data/Miscellaneous/AppCookie.cs')
| -rw-r--r-- | src/Data/Miscellaneous/AppCookie.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Data/Miscellaneous/AppCookie.cs b/src/Data/Miscellaneous/AppCookie.cs new file mode 100644 index 0000000..f355bb6 --- /dev/null +++ b/src/Data/Miscellaneous/AppCookie.cs @@ -0,0 +1,8 @@ +namespace VSH.Data.Miscellaneous; + +public sealed record AppCookie +{ + public string Name { get; init; } + public string Description { get; init; } + public bool Required { get; init; } +}
\ No newline at end of file |
