14 lines
284 B
C#
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>();
|
|
}
|