1
0
mirror of synced 2024-11-24 06:50:15 +01:00
TaikoLocalServer/SharedProject/Models/Requests/SetFavoriteRequest.cs
2023-09-09 21:58:20 +09:00

8 lines
194 B
C#

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