10 lines
170 B
C#
10 lines
170 B
C#
using System;
|
|
|
|
namespace ModestTree.Util
|
|
{
|
|
[AttributeUsage(AttributeTargets.All, AllowMultiple = false)]
|
|
public class PreserveAttribute : Attribute
|
|
{
|
|
}
|
|
}
|