RaspberryIO_26/Swan.Tiny/Mappers/CopyableAttribute.cs

12 lines
300 B
C#
Raw Normal View History

2019-12-09 17:25:54 +01:00
using System;
namespace Swan.Mappers {
/// <summary>
/// Represents an attribute to select which properties are copyable between objects.
/// </summary>
/// <seealso cref="Attribute" />
[AttributeUsage(AttributeTargets.Property)]
public class CopyableAttribute : Attribute {
}
}