Files
Walleby/Bitvault/Tag.cs
T
TheXamlGuy 7cbca0783f WIP
2024-05-04 15:13:46 +01:00

12 lines
172 B
C#

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