9 lines
185 B
C#
9 lines
185 B
C#
using System;
|
|
|
|
namespace SharedLibraryCore.Configuration.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class ConfigurationOptional : Attribute
|
|
{
|
|
}
|
|
} |