1
0
mirror of synced 2025-02-19 12:04:21 +01:00
2023-02-18 01:29:20 +08:00

10 lines
178 B
C#

namespace Shared.Dto.Api;
public class MusicDetailDto
{
public long CardId { get; set; }
public int MusicId { get; set; }
public bool IsFavorite { get; set; }
}