Files
crtr/Assets/Cryville/Crtr/Browsing/IChartDetail.cs
2023-12-19 15:23:40 +08:00

11 lines
195 B
C#

using System;
namespace Cryville.Crtr.Browsing {
internal interface IChartDetail {
string RulesetId { get; }
string Name { get; }
string SongName { get; }
TimeSpan Length { get; }
}
}