13 lines
263 B
C#
Raw Normal View History

2023-04-11 15:29:05 +04:00
namespace IceCreamShopContracts.SearchModels
{
public class MessageInfoSearchModel
{
public int? ClientId { get; set; }
public string? MessageId { get; set; }
2023-05-03 14:05:03 +04:00
public int? Page { get; set; }
public int? PageSize { get; set; }
}
2023-04-11 15:29:05 +04:00
}