2023-09-09 14:58:20 +02:00
|
|
|
|
namespace SharedProject.Models.Requests;
|
|
|
|
|
|
|
|
|
|
public class SetFavoriteRequest
|
|
|
|
|
{
|
2024-03-07 11:06:45 +01:00
|
|
|
|
public uint Baid { get; set; }
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public uint SongId { get; set; }
|
|
|
|
|
public bool IsFavorite { get; set; }
|
|
|
|
|
}
|