1
0
mirror of synced 2024-11-28 16:40:57 +01:00
TaikoLocalServer/SharedProject/Models/Requests/SetFavoriteRequest.cs
2024-03-07 19:06:45 +09:00

8 lines
193 B
C#

namespace SharedProject.Models.Requests;
public class SetFavoriteRequest
{
public uint Baid { get; set; }
public uint SongId { get; set; }
public bool IsFavorite { get; set; }
}