PIbd-21_Shanygin_A.V_BaseData/Hotel/HotelContracts/SearchModels/WorkerSearchModel.cs

15 lines
266 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelContracts.SearchModels
{
public class WorkerSearchModel
{
public int? Id { get; set; }
2024-05-04 00:04:39 +04:00
public string? FIO { get; set; }
}
}