ISettingPageView.cs 445 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ShakerApp.Views
  7. {
  8. public interface ISettingPageView
  9. {
  10. public string DisplayName { get; }
  11. public string Icon { get; }
  12. }
  13. public sealed class SettingPageAttribute:Attribute
  14. {
  15. public SettingPageAttribute(int index) => Index = index;
  16. public int Index { get; }
  17. }
  18. }