8 lines
182 B
C#
8 lines
182 B
C#
|
namespace ShipyardContracts.SearchModels
|
|||
|
{
|
|||
|
public class ShipSearchModel
|
|||
|
{
|
|||
|
public int? Id { get; set; }
|
|||
|
public string? ShipName { get; set; }
|
|||
|
}
|
|||
|
}
|