PIbd-22_Kamcharova_K.A_Reno.../RenovationWorkContracts/SearchModels/MessageInfoSearchModel.cs

14 lines
291 B
C#
Raw Normal View History

2024-06-22 15:58:51 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RenovationWorkContracts.SearchModels
{
public class MessageInfoSearchModel
{
public int? ClientId { get; set; }
public string? MessageId { get; set; }
}
}