task01/task01/Context/Profession.cs
2025-03-14 17:19:39 +03:00

14 lines
284 B
C#

using System;
using System.Collections.Generic;
namespace task01.Context;
public partial class Profession
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public virtual ICollection<Employee> Employees { get; set; } = new List<Employee>();
}