8 lines
174 B
C#
8 lines
174 B
C#
|
namespace HotelContracts.SearchModels
|
|||
|
{
|
|||
|
public class LunchSearchModel
|
|||
|
{
|
|||
|
public string? LunchName { get; set; }
|
|||
|
public int? Id { get; set; }
|
|||
|
}
|
|||
|
}
|