14 lines
394 B
C#
14 lines
394 B
C#
namespace Microsoft.SelfService.Portal.Core.API.Extensions.Dataannotations
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class DefaultValueSqlAttribute : Attribute
|
|
{
|
|
public string DefaultValueSql { get; private set; } = "";
|
|
|
|
public DefaultValueSqlAttribute(string defaultValueSql)
|
|
{
|
|
DefaultValueSql = defaultValueSql;
|
|
}
|
|
}
|
|
}
|