mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-04 16:49:36 +00:00
7 lines
139 B
C#
7 lines
139 B
C#
namespace ShoppingAssistantWebClient.Web.Models.Input;
|
|
|
|
public class MessageCreateDto
|
|
{
|
|
public required string Text { get; set; }
|
|
}
|