1
0
mirror of synced 2025-01-10 12:11:46 +01:00

8 lines
193 B
C#
Raw Normal View History

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