9 lines
185 B
C#
Raw Normal View History

2024-03-13 14:54:56 +04:00
namespace ConfectioneryContracts.SearchModels
{
public class PastrySearchModel
{
public int? Id { get; set; }
public string? PastryName { get; set; }
}
}