using System;
namespace Umbraco.Core.Persistence.SqlSyntax
{
///
/// Attribute for implementations of an ISqlSyntaxProvider
///
[AttributeUsage(AttributeTargets.Class)]
public class SqlSyntaxProviderAttribute : Attribute
{
public SqlSyntaxProviderAttribute(string providerName)
{
ProviderName = providerName;
}
///
/// Gets or sets the ProviderName that corresponds to the sql syntax in a provider.
///
public string ProviderName { get; set; }
}
}