using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Contracts.ViewModels { public class AuthorViewModel { public int? Id { get; set; } [DisplayName("Имя Автора")] public string FIO { get; set; } = string.Empty; } }