0
0
mirror of https://github.com/Shchoholiev/shopping-assistant-api.git synced 2025-06-30 02:31:11 +00:00
shopping-assistant-api/ShoppingAssistantApi.Application/Models/Dtos/WishlistDto.cs

12 lines
277 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 string CreatedById { get; set; } = null!;
}