blob: afa876f775ea29699d53a1015a05968bb1390bcf (
plain) (
blame)
1
2
3
4
5
6
7
8
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; }
}
}
|