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