1
0
mirror of synced 2025-01-30 11:57:23 +01:00

8 lines
194 B
C#
Raw Normal View History

2023-09-09 21:58:20 +09:00
namespace SharedProject.Models.Requests;
public class SetFavoriteRequest
{
public ulong Baid { get; set; }
public uint SongId { get; set; }
public bool IsFavorite { get; set; }
}