9 lines
221 B
C#
Raw Permalink Normal View History

namespace HotelContracts.SearchModels
{
public class LunchSearchModel
{
public string? LunchName { get; set; }
public int? HeadwaiterId { get; set; }
public int? Id { get; set; }
}
}