16 lines
296 B
C#
Raw Normal View History

2023-02-06 11:06:12 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaContracts.SearchModels
{
public class PizzaSearchModel
{
public int? Id { get; set; }
2023-03-05 22:35:21 +04:00
public string? PizzaName { get; set; }
2023-02-06 11:06:12 +04:00
}
}