piwigodotnet/PiwigoDotnet/Piwigo.Client/Contract/ValueUpdateMode.cs

15 lines
352 B
C#
Raw Normal View History

namespace Piwigo.Client.Contract;
public enum ValueUpdateMode
{
/// <summary>
/// Appends the values to the current one if it is a list or
/// just set the value if it is not present in single mode
/// </summary>
Append = 0,
/// <summary>
/// Replaces the values with the provided ones
/// </summary>
Replace
}