WCFClientViewModel.cs 232 B

12345678910
  1. using System.ComponentModel.Composition;
  2. namespace Modules.WCFClient
  3. {
  4. [Export(contractType: typeof(WCFClientViewModel)),
  5. PartCreationPolicy(creationPolicy: CreationPolicy.NonShared)]
  6. public class WCFClientViewModel
  7. {
  8. }
  9. }