23 lines
530 B
C#
23 lines
530 B
C#
// src/Webshop.Application/DTOs/Reviews/CreateReviewDto.cs
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Webshop.Application.DTOs.Reviews
|
|
{
|
|
public class CreateReviewDto
|
|
{
|
|
[Required]
|
|
public Guid ProductId { get; set; }
|
|
|
|
[Required]
|
|
[Range(1, 5)]
|
|
public int Rating { get; set; }
|
|
|
|
[Required]
|
|
[MaxLength(255)]
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
[MaxLength(2000)]
|
|
public string? Comment { get; set; }
|
|
}
|
|
} |