15 lines
395 B
C#
15 lines
395 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;
|
|
}
|
|
}
|
|
}
|
|
|