using Windows.Data.Xml.Dom; using Windows.UI.Notifications; namespace FoxTube.Core.Models { public static class Notifications { public static ToastNotification GetChangelogToast(string version) { XmlDocument template = new XmlDocument(); // TODO: Add backend template.LoadXml($@" Changelog See what's new in {version} "); return new ToastNotification(template); } } }