using System.Threading.Tasks; namespace Bit.App.Styles { /// /// This is an interface to mark the pages that need theme update special treatment /// given that they aren't updated automatically by the Forms theme system. /// public interface IThemeDirtablePage { bool IsThemeDirty { get; set; } Task UpdateOnThemeChanged(); } }