PreserveAttribute.cs 170 B

123456789
  1. using System;
  2. namespace ModestTree.Util
  3. {
  4. [AttributeUsage(AttributeTargets.All, AllowMultiple = false)]
  5. public class PreserveAttribute : Attribute
  6. {
  7. }
  8. }