16 lines
350 B
C#
Raw Permalink Normal View History

2024-10-07 01:48:00 +04:00
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;
}
}