1
0
mirror of synced 2024-11-30 17:04:28 +01:00
GC-local-server-rewrite/Shared/Models/SongPlayRecord.cs

18 lines
416 B
C#

using System.Text.Json.Serialization;
namespace Shared.Models;
public class SongPlayRecord
{
public string Title { get; set; } = string.Empty;
public string Artist { get; set; } = string.Empty;
public int MusicId { get; set; }
public bool IsFavorite { get; set; }
public int TotalPlayCount { get; set; }
public List<StagePlayRecord> StagePlayRecords { get; set; } = new();
}