using System.Collections.Generic;
namespace MarkdownEditor.Models;
///
/// Represents a complete application session state.
///
public class SessionData
{
///
/// Gets or sets the list of tabs that were open in the session.
///
public List Tabs { get; set; } = new();
///
/// Gets or sets the index of the tab that was selected when the session was saved.
///
public int SelectedTabIndex { get; set; }
}