Files
Walleby/Bitvault.Data/Category.cs
T
TheXamlGuy e372eca4d0 Prototyping
2024-05-10 22:38:08 +01:00

11 lines
182 B
C#

using System.ComponentModel.DataAnnotations;
namespace Bitvault.Data;
public record Category
{
[Key]
public int Id { get; set; }
public string? Name { get; set; }
}