14 lines
246 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;
namespace UchetLabContracts.SearchModels
{
public class LabSearchModel
{
public int? Id { get; set; }
}
}