mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-05 00:59:36 +00:00
7 lines
143 B
C#
7 lines
143 B
C#
namespace ShoppingAssistantApi.Application.Models.CreateDtos;
|
|
|
|
public class MessageCreateDto
|
|
{
|
|
public required string Text { get; set; }
|
|
}
|