16 lines
317 B
C#
Raw Normal View History

2024-04-21 21:19:22 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelContracts.SearchModels
{
public class DinnerSearchModel
{
public int? Id { get; set; }
public string? DinnerName { get; set; }
public int? AdministratorId { get; set; }
}
}