12 lines
354 B
C#
12 lines
354 B
C#
namespace SmallSoftwareContracts.Mapper;
|
|
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Class)]
|
|
class DefaultValueAttribute : Attribute
|
|
{
|
|
public object? DefaultValue { get; set; }
|
|
|
|
public DefaultValueFunc Func { get; set; } = DefaultValueFunc.None;
|
|
|
|
[Obsolete("Use Func instead")]
|
|
public string? FuncName { get; set; }
|
|
} |