ISEbd-21_KashtanovD.A.FishF.../FishFactory/FishFactoryContracts/SearchModels/CannedSearchModel.cs
2024-02-25 14:03:09 +04:00

10 lines
184 B
C#

namespace FishFactoryContracts.SearchModels
{
public class CannedSearchModel
{
public int? Id { get; set; }
public string? CannedName { get; set; }
}
}