namespace SabreTools.Data.Models.Charts
{
///
public class Tier
{
///
/// Display name of the tier.
///
public string? Name { get; set; }
///
/// Name used for associating a song with this tier, and for checking unlock requirements.
///
public string? UnlockId { get; set; }
}
}