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