19 lines
532 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 LabViewModel : IlabModel
{
public int Id { get; set; }
public string LabTask { get; set; } = string.Empty;
public string TaskImage { get; set; } = string.Empty;
public string Checker { get; set; } = string.Empty;
public DateTime CheckDate { get; set; } = DateTime.Now;
}
}