ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/SearchModels/PastrySearchModel.cs
2023-02-03 23:25:31 +04:00

9 lines
185 B
C#

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