9 lines
185 B
C#
9 lines
185 B
C#
namespace ConfectioneryContracts.SearchModels
|
|
{
|
|
public class PastrySearchModel
|
|
{
|
|
public int? Id { get; set; }
|
|
public string? PastryName { get; set; }
|
|
}
|
|
}
|