1
0
mirror of synced 2024-12-18 17:25:54 +01:00
GC-local-server-rewrite/Domain/Entities/PlayNumRank.cs

19 lines
416 B
C#
Raw Normal View History

namespace Domain.Entities;
public class PlayNumRank
{
public int MusicId { get; set; }
public int PlayCount { get; set; }
public int Rank { get; set; }
public int Rank2 { get; set; }
public int PrevRank { get; set; }
public int PrevRank2 { get; set; }
public string Title { get; set; } = string.Empty;
public string Artist { get; set; } = string.Empty;
}