namespace ytLive.Models; /// /// A resolution tier offered by the bottom-bar dropdown. Bitrate is Mbps. /// public sealed record QualityOption(string Display, int Fps, double Bitrate) { /// Self-documenting label, e.g. "1080p60 (8Mbps)". public string Label => $"{Display} ({Bitrate:0.#}Mbps)"; }