PIbd22_NikiforovaMV_Automob.../AutomobilePlantContracts/SearchModels/MessageInfoSearchModel.cs
2024-06-22 22:30:26 +04:00

15 lines
293 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomobilePlantContracts.SearchModels
{
public class MessageInfoSearchModel
{
public int? ClientId { get; set; }
public string? MessageId { get; set; }
}
}