MessageInfoSearchModel

This commit is contained in:
VictoriaPresnyakova 2023-04-30 19:13:23 +04:00
parent 21d1389aed
commit 4e9cf0f3cf

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JewelryStoreContracts.SearchModels
{
public class MessageInfoSearchModel
{
public int? ClientId { get; set; }
public string? MessageId { get; set; }
}
}