PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopContracts/SearchModels/MessageInfoSearchModel.cs

16 lines
313 B
C#
Raw Normal View History

2024-04-16 23:11:45 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopContracts.SearchModels
{
public class MessageInfoSearchModel
{
public int? ClientId { get; set; }
public string? MessageId { get; set; }
}
}