16 lines
420 B
C#
16 lines
420 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace PluginBuilder.ViewModels;
|
|
|
|
public class RatingInlineViewModel
|
|
{
|
|
[Range(0, 5)]
|
|
public decimal Average { get; set; }
|
|
|
|
public int TotalReviews { get; set; }
|
|
public string IconSize { get; set; } = "fs-5";
|
|
public bool ShowNumber { get; set; } = true;
|
|
public string? AriaLabelPrefix { get; set; }
|
|
public bool ShowTotalReviews { get; set; }
|
|
}
|