mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
huge commit for advanced stats feature.
broke data out into its own library. may be breaking changes with existing plugins
This commit is contained in:
23
Data/Abstractions/IPropertyExtender.cs
Normal file
23
Data/Abstractions/IPropertyExtender.cs
Normal file
@ -0,0 +1,23 @@
|
||||
namespace Data.Abstractions
|
||||
{
|
||||
/// <summary>
|
||||
/// describes the capability of extending properties by name
|
||||
/// </summary>
|
||||
interface IPropertyExtender
|
||||
{
|
||||
/// <summary>
|
||||
/// adds or updates property by name
|
||||
/// </summary>
|
||||
/// <param name="name">unique name of the property</param>
|
||||
/// <param name="value">value of the property</param>
|
||||
void SetAdditionalProperty(string name, object value);
|
||||
|
||||
/// <summary>
|
||||
/// retreives a property by name
|
||||
/// </summary>
|
||||
/// <typeparam name="T"></typeparam>
|
||||
/// <param name="name">name of the property</param>
|
||||
/// <returns>property value if exists, otherwise default T</returns>
|
||||
T GetAdditionalProperty<T>(string name);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user