1
0
mirror of synced 2025-02-14 17:53:07 +01:00

10 lines
183 B
C#
Raw Normal View History

2023-02-17 00:38:01 +08:00
namespace Application.Dto.Api;
public class MusicDetailDto
{
public long CardId { get; set; }
public int MusicId { get; set; }
public bool IsFavorite { get; set; }
}