Files
VisualComponents/VisualComponentsForm/Contracts/SearchModel/LabWorkSearchModel.cs
2023-10-25 00:07:28 +04:00

18 lines
328 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModel
{
public class LabWorkSearchModel
{
public int? Id { get; set; }
public string? Theme { get; set; }
public string? Name { get; set; }
}
}