mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-06-30 02:31:11 +00:00
8 lines
202 B
C#
8 lines
202 B
C#
namespace ShoppingAssistantApi.Application.Models.CreateDtos;
|
|
|
|
public class WishlistCreateDto
|
|
{
|
|
public required string Type { get; set; }
|
|
public required string FirstMessageText { get; set; }
|
|
}
|