9 lines
182 B
C#
Raw Permalink Normal View History

2024-04-20 21:14:10 +03:00
namespace MotorPlantContracts.SearchModels
{
public class EngineSearchModel
{
public int? Id { get; set; }
public string? EngineName { get; set; }
}
}