demo_term/demko_term/Models/Position.cs
2025-04-14 08:39:47 +03:00

14 lines
296 B
C#

using System;
using System.Collections.Generic;
namespace demko_term.Models;
public partial class Position
{
public int Id { get; set; }
public string Title { get; set; } = null!;
public virtual ICollection<Employee> Employees { get; set; } = new List<Employee>();
}