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

12 lines
206 B
C#
Raw Normal View History

2024-09-15 22:56:28 +08:00
using SharedProject.Enums;
namespace SharedProject.Models;
public class SongInfo
{
public MusicDetail MusicDetail { get; set; } = new();
public Difficulty Difficulty { get; set; } = new();
}