PIBD-21_Lobashov_I_D_Travel.../TravelCompany/TravelCompanyContracts/SearchModels/ComponentSearchModel.cs

15 lines
308 B
C#
Raw Permalink Normal View History

2024-02-07 19:42:14 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelCompanyContracts.SearchModels
{
public class ComponentSearchModel
{
public int? Id { get; set; }
public string? ComponentName { get; set; }
}
}