DemoService/Models/Tag.cs

16 lines
324 B
C#
Raw Normal View History

2024-09-05 13:11:39 +00:00
using System;
using System.Collections.Generic;
namespace DemoService.Models;
public partial class Tag
{
public int Id { get; set; }
public string Title { get; set; } = null!;
public string Color { get; set; } = null!;
public virtual ICollection<Client> Clients { get; set; } = new List<Client>();
}