RaspberryIO/Unosquare.Swan.Lite/Attributes/CopyableAttribute.cs
2019-12-04 17:10:06 +01:00

12 lines
315 B
C#

using System;
namespace Unosquare.Swan.Attributes {
/// <summary>
/// Represents an attribute to select which properties are copyable between objects.
/// </summary>
/// <seealso cref="Attribute" />
[AttributeUsage(AttributeTargets.Property)]
public class CopyableAttribute : Attribute {
}
}