PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/SearchModels/PastrySearchModel.cs
2024-03-13 14:54:56 +04:00

9 lines
185 B
C#

namespace ConfectioneryContracts.SearchModels
{
public class PastrySearchModel
{
public int? Id { get; set; }
public string? PastryName { get; set; }
}
}