Files
ShopSolution-backend/Webshop.Application/DTOs/Reviews/CreateReviewDto.cs
Tizian.Breuch 9e298a0458 aufrüumen
2025-07-25 15:46:31 +02:00

17 lines
404 B
C#

// Auto-generiert von CreateWebshopFiles.ps1
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Webshop.Application.DTOs.Reviews
{
public class CreateReviewDto
{
public Guid ProductId { get; set; }
public int Rating { get; set; }
public string? Title { get; set; }
public string Comment { get; set; } = string.Empty;
}
}