PIBD-21_Lobashov_I_D_Travel.../TravelCompany/TravelCompanyContracts/SearchModels/SupplySearchModel.cs
2024-04-04 23:08:20 +04:00

14 lines
299 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelCompanyContracts.SearchModels
{
public class SupplySearchModel
{
public int? TravelId { get; set; }
public int? Count { get; set; }
}
}