11 lines
182 B
C#
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; }
|
|
} |