using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using UchetLabDataModels.Models; namespace UchetLabContracts.ViewModels { public class CheckerViewModel : ICheckerModel { public int Id { get; set; } public string FIO { get; set; } = string.Empty; } }