zadanie/Demo1704/Models/Tag.cs

16 lines
321 B
C#
Raw Permalink Normal View History

2025-04-17 02:05:48 +00:00
using System;
using System.Collections.Generic;
namespace Demo1704.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>();
}