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

14 lines
299 B
C#
Raw Normal View History

2024-04-04 23:08:20 +04:00
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; }
}
}