13 lines
249 B
C#
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; }
|
|
} |