Perhaps save it as settings in SettingService - and use the panel GetSettingsAsync() to load it?
public override async Task<SettingsModel> GetSettingsAsync()
{
return new SettingsModel();
}
public class SettingsModel : IPanelSettings
{
public string Title { get; set; } = "Sample Title";
}