f0fd4c66e9
fix silly bug with no being able to claim ownership continue work on configuration via webfront
12 lines
241 B
C#
12 lines
241 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SharedLibraryCore.Helpers
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property, Inherited = false)]
|
|
public class ConfigurationOptional : Attribute
|
|
{
|
|
}
|
|
}
|