using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace WpfAppUI.Model { public class Post // Должность { [Required] public int id { get; set; } [Required] public string Name { get; set; } //Название [Required] public virtual List Emploee { get; set; } //Сотрудник } }