1
0
mirror of synced 2025-03-01 16:00:28 +01:00

14 lines
360 B
C#
Raw Normal View History

2022-04-25 02:07:11 +08:00
namespace SharedProject.models;
public class SongPlayData
{
public string Title { get; set; } = string.Empty;
public string Artist { get; set; } = string.Empty;
public SongPlayDetailData[] SongPlaySubDataList { get; set; } = new SongPlayDetailData[4];
2022-06-18 22:11:14 +08:00
public bool IsFavorite { get; set; }
2022-04-25 02:07:11 +08:00
public bool ShowDetails { get; set; }
}