Files
2024-07-07 20:09:03 +01:00

13 lines
249 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Wallet.Data;
[Table("Tags")]
public class TagEntity
{
[Key]
public Guid Id { get; set; }
public string? Name { get; set; }
}