ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/SearchModels/PastrySearchModel.cs

9 lines
185 B
C#
Raw Normal View History

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