mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-02-21 02:30:03 -05:00
15 lines
376 B
C#
15 lines
376 B
C#
using API.Entities.Enums;
|
|
using API.Services.Plus;
|
|
|
|
namespace API.DTOs;
|
|
#nullable enable
|
|
|
|
public class RatingDto
|
|
{
|
|
public int AverageScore { get; set; }
|
|
public int FavoriteCount { get; set; }
|
|
public ScrobbleProvider Provider { get; set; }
|
|
public RatingAuthority Authority { get; set; } = RatingAuthority.User;
|
|
public string? ProviderUrl { get; set; }
|
|
}
|