1
0
mirror of synced 2025-01-26 07:53:44 +01:00

7 lines
155 B
C#
Raw Normal View History

namespace SharedProject.Models.Responses;
public class SongHistoryResponse
{
public List<SongHistoryData> SongHistoryData { get; set; } = new();
}