PIbd-22_Aleikin_A.M._Confec.../Confectionery/ConfectioneryContracts/SearchModels/PastrySearchModel.cs

16 lines
303 B
C#
Raw Normal View History

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
{
public class PastrySearchModel
2023-01-31 13:12:06 +04:00
{
public int? Id { get; set; }
public string? PastryName { get; set; }
2023-01-31 13:12:06 +04:00
}
}