2023-01-31 13:12:06 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryContracts.SearchModels
|
|
|
|
|
{
|
2023-02-14 00:08:23 +04:00
|
|
|
|
public class PastrySearchModel
|
2023-01-31 13:12:06 +04:00
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
|
|
|
|
|
2023-02-14 00:08:23 +04:00
|
|
|
|
public string? PastryName { get; set; }
|
2023-01-31 13:12:06 +04:00
|
|
|
|
}
|
|
|
|
|
}
|