using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Contracts.ViewModels { public class ReportHuman { [DisplayName("ФИО")] public string? Name { get; set; } [DisplayName("Расстояние")] public int? Length { get; set; } } }