14 lines
299 B
C#
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; }
|
|
}
|
|
} |