demo_term/demko_term/Models/Position.cs

14 lines
296 B
C#
Raw Permalink Normal View History

2025-04-14 05:39:47 +00:00
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>();
}