aboutsummaryrefslogtreecommitdiffstats
path: root/src/Data/Miscellaneous/AppCookie.cs
blob: f355bb605bb8ff4112cb394548565713a8b2b349 (plain) (blame)
1
2
3
4
5
6
7
8
namespace VSH.Data.Miscellaneous;

public sealed record AppCookie
{
	public string Name { get; init; }
	public string Description { get; init; }
	public bool Required { get; init; }
}