ShellViewModel.cs 251 B

1234567891011
  1. using System.ComponentModel.Composition;
  2. using Microsoft.Practices.Prism.Mvvm;
  3. namespace Editor
  4. {
  5. [Export]
  6. public class ShellViewModel: BindableBase
  7. {
  8. // This is where any view model logic for the shell would go.
  9. }
  10. }