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 Employees { get; set; } = new List(); }