11 lines
251 B
C#
Raw Normal View History

namespace CarRepairShopContracts.SearchModels
{
public class MessageInfoSearchModel
{
public int? ClientId { get; set; }
public string? MessageId { get; set; }
2024-05-21 02:59:28 +04:00
public int? PageLength { get; set; }
public int? PageIndex { get; set; }
}
}