11 lines
284 B
C#
Raw Normal View History

2023-04-21 23:21:49 +04:00
namespace SofrwareInstallationContracts.SearchModels
{
public class MessageInfoSearchModel
{
public int? ClientId { get; set; }
public string? MessageId { get; set; }
public int? Page { get; set; }
public int? PageSize { get; set; }
2023-04-21 23:21:49 +04:00
}
}