18 lines
386 B
C#
Raw Permalink Normal View History

2023-05-05 20:47:09 +03:00
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; }
}
}