12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ShakerApp.Views
- {
- public interface ISettingPageView
- {
- public string DisplayName { get; }
- public string Icon { get; }
- }
- public sealed class SettingPageAttribute:Attribute
- {
- public SettingPageAttribute(int index) => Index = index;
- public int Index { get; }
- }
- }
|