Files
DevOps/5/Models/Review.cs
2026-04-07 20:35:53 +02:00

22 lines
432 B
C#

using System.ComponentModel.DataAnnotations;
namespace Example.Models
{
public class Review
{
Review() {}
public int Id { get; set; }
[Range(1, 5)]
public int Stars { get; set; }
[StringLength(1000)]
public string Text { get; set; } = string.Empty;
public int AuthorId { get; set; }
public Author? Author { get; set; }
}
}