Files
ReC/src/ReC.Domain/Attributes/MustConfiguredAttribute.cs
TekH 1419455b36 Add MustConfiguredAttribute and update project file
Added MustConfiguredAttribute for property usage in ReC.Domain.Attributes. Removed explicit "Attributes\" folder reference from ReC.Domain.csproj since the folder now contains code.
2025-12-10 13:32:42 +01:00

7 lines
134 B
C#

namespace ReC.Domain.Attributes;
[AttributeUsage(AttributeTargets.Property)]
public class MustConfiguredAttribute : Attribute
{
}