using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using TaskTrackerDataModels.Models; namespace TaskTrackerContracts.ViewModels { public class ProjectViewModel : IProjectModel { public int Id { get; set; } [DisplayName("Название проекта")] public string ProjectName { get; set; } = string.Empty; } }