using System; namespace Dapper { /// /// Tell Dapper to use an explicit constructor, passing nulls or 0s for all parameters /// [AttributeUsage(AttributeTargets.Constructor, AllowMultiple = false)] public sealed class ExplicitConstructorAttribute : Attribute { } }