1
0
mirror of synced 2025-02-15 18:22:37 +01:00
2022-06-18 22:11:14 +08:00

14 lines
370 B
C#

namespace SharedProject.models;
public class SongPlayData
{
public string Title { get; set; } = string.Empty;
public string Artist { get; set; } = string.Empty;
public List<SongPlayDetailData> SongPlaySubDataList { get; set; } = new List<SongPlayDetailData>(4);
public bool IsFavorite { get; set; }
public bool ShowDetails { get; set; }
}