mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
504 B
23 lines
504 B
namespace ZeroLevel.Services.Config
|
|
{
|
|
/// <summary>
|
|
/// Merge behavior when keys match
|
|
/// </summary>
|
|
public enum ConfigurationRecordExistBehavior
|
|
: int
|
|
{
|
|
/// <summary>
|
|
/// Add values to existing values
|
|
/// </summary>
|
|
Append = 0,
|
|
/// <summary>
|
|
/// Overwrite existing values
|
|
/// </summary>
|
|
Overwrite = 1,
|
|
/// <summary>
|
|
/// Ignore new values
|
|
/// </summary>
|
|
IgnoreNew = 2
|
|
}
|
|
}
|