namespace API.DTOs.JumpBar;
/// 
/// Represents an individual button in a Jump Bar
/// 
public class JumpKeyDto
{
    /// 
    /// Number of items in this Key
    /// 
    public int Size { get; set; }
    /// 
    /// Code to use in URL (url encoded)
    /// 
    public string Key { get; set; } = default!;
    /// 
    /// What is visible to user
    /// 
    public string Title { get; set; } = default!;
}