1 namespace Loot.Api.Builder
8 protected T Property =
new T();
9 protected abstract T DefaultProperty {
set; }
17 WithDefault(defaultPropertyBuilder);
22 WithDefault(defaultValue);
27 DefaultProperty = defaultPropertyBuilder.
Build();
32 DefaultProperty = defaultValue;
void WithDefault(IPropertyBuilder< T > defaultPropertyBuilder)
void WithDefault(T defaultValue)
PropertyBuilder(IPropertyBuilder< T > defaultPropertyBuilder)
PropertyBuilder(T defaultValue)
Defines the interface for a PropertyBuilder of generic T
Defines an abstract implementation of IPropertyBuilder<T>