ConfigViewModel.idl 445 B

123456789101112131415
  1. namespace Maple_App
  2. {
  3. [bindable]
  4. [default_interface]
  5. runtimeclass ConfigViewModel : Windows.UI.Xaml.Data.INotifyPropertyChanged
  6. {
  7. Windows.Storage.StorageFile File{ get; };
  8. String Name{ get; };
  9. Windows.Foundation.DateTime DateUpdated{ get; };
  10. Boolean IsDefault{ get; set; };
  11. Windows.Foundation.IAsyncAction Delete();
  12. Windows.Foundation.IAsyncAction Rename(String newName);
  13. }
  14. }