LabSubd/Subd/Contracts/ViewModels/ReportHuman.cs
2023-05-05 20:47:09 +03:00

18 lines
386 B
C#

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; }
}
}