shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Models/Input/MessageCreateDto.cs
2023-11-09 02:25:08 +02:00

7 lines
139 B
C#

namespace ShoppingAssistantWebClient.Web.Models.Input;
public class MessageCreateDto
{
public required string Text { get; set; }
}