添加项目文件。
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
namespace MessageService.WebApi.Application.Dtos
|
||||
{
|
||||
public class GetMessagesResponse
|
||||
{
|
||||
public List<MessageResponse> Messages { get; init; }
|
||||
public bool Hasmore { get; init; }
|
||||
|
||||
public GetMessagesResponse(List<MessageResponse> messages, bool hasmore)
|
||||
{
|
||||
Messages = messages;
|
||||
Hasmore = hasmore;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user