RaspberryIO_26/Swan.Lite/Mappers/CopyableAttribute.cs
2019-12-04 18:57:18 +01:00

14 lines
315 B
C#

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
{
}
}