PIbd - 21 Bakalskaya E.D. LabWork07 BASE #13

Closed
ekallin wants to merge 26 commits from LabWork07 into LabWork06
Showing only changes of commit fd197fa9f4 - Show all commits

View File

@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarContracts.SearchModel
{
public class MessageInfoSearchModel
{
public string? MessageId { get; set; }
public int? ClientId { get; set; }
public string? SenderName { get; set; }
public DateTime? DateDelivery { get; set; }
public string? Subject { get; set; }
public string? Body { get; set; }
}
}