Added MustConfiguredAttribute for property usage in ReC.Domain.Attributes. Removed explicit "Attributes\" folder reference from ReC.Domain.csproj since the folder now contains code.
7 lines
134 B
C#
7 lines
134 B
C#
namespace ReC.Domain.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class MustConfiguredAttribute : Attribute
|
|
{
|
|
}
|