CommandAttribute.cs 158 B

12345678910
  1. using System;
  2. namespace SAGA.DotNetUtils.WPF
  3. {
  4. [AttributeUsage(AttributeTargets.Method)]
  5. public class CommandAttribute : Attribute
  6. {
  7. }
  8. }