SUBD/TravelCompany/TravelCompanyContracts/SearchModels/ComponentSearchModel.cs

15 lines
308 B
C#
Raw Permalink Normal View History

2024-04-28 21:24:09 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-05-03 22:09:36 +04:00
namespace TravelCompanyContracts.SearchModels
2024-04-28 21:24:09 +04:00
{
2024-05-03 22:09:36 +04:00
public class ComponentSearchModel
2024-04-28 21:24:09 +04:00
{
public int? Id { get; set; }
2024-05-03 22:09:36 +04:00
public string? ComponentName { get; set; }
2024-04-28 21:24:09 +04:00
}
}