Pull up IChartDetail.

This commit is contained in:
2023-12-19 15:23:40 +08:00
parent 81d458f7de
commit b7f5dbc4da
11 changed files with 59 additions and 20 deletions

View File

@@ -0,0 +1,10 @@
using System;
namespace Cryville.Crtr.Browsing {
internal interface IChartDetail {
string RulesetId { get; }
string Name { get; }
string SongName { get; }
TimeSpan Length { get; }
}
}