18 lines
320 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelContracts.SearchModels
{
public class MealPlanSearchModel
{
public int? Id { get; set; }
public string? MealPlanName { get; set; }
public int? OrganiserId { get; set; }
}
}