1
0
mirror of synced 2024-11-28 08:00:49 +01:00
GC-local-server-rewrite/SharedProject/models/SongPlayData.cs
2022-04-25 02:07:11 +08:00

16 lines
429 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 DateTime LastPlayTime { get; set; }
public int TotalPlayCount { get; set; }
public bool ShowDetails { get; set; }
}