1
0
mirror of synced 2025-02-05 22:25:29 +01:00

8 lines
193 B
C#
Raw Normal View History

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