mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-12 01:48:49 +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; }
|
|
}
|