mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
13 lines
278 B
C#
13 lines
278 B
C#
namespace ShoppingAssistantApi.Application.Models.Dtos;
|
|
|
|
public class WishlistDto
|
|
{
|
|
public required string Id { get; set; }
|
|
|
|
public required string Name { get; set; }
|
|
|
|
public required string Type { get; set; }
|
|
|
|
public required string CreatedById { get; set; }
|
|
}
|