Eliseev_E.E._PIbd-21_DBMS/TransportCompany/TransportCompanyContracts/SearchModels/CargoSearchModel.cs

16 lines
283 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TransportCompanyContracts.SearchModels
{
public class CargoSearchModel
{
public int? Id { get; set; }
public string? TypeCargo { get; set; }
}
}