2023-02-18 01:29:20 +08:00
|
|
|
|
namespace Shared.Dto.Api;
|
2023-02-17 00:38:01 +08:00
|
|
|
|
|
2023-02-22 02:55:32 +08:00
|
|
|
|
public class MusicFavoriteDto
|
2023-02-17 00:38:01 +08:00
|
|
|
|
{
|
|
|
|
|
public long CardId { get; set; }
|
|
|
|
|
|
|
|
|
|
public int MusicId { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsFavorite { get; set; }
|
|
|
|
|
}
|