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