Files
Umbraco-CMS/src/Umbraco.Core/Deploy/ArtifactDependencyMode.cs
2017-07-20 11:21:28 +02:00

19 lines
377 B
C#

namespace Umbraco.Core.Deploy
{
/// <summary>
/// Indicates the mode of the dependency.
/// </summary>
public enum ArtifactDependencyMode
{
/// <summary>
/// The dependency must match exactly.
/// </summary>
Match,
/// <summary>
/// The dependency must exist.
/// </summary>
Exist
}
}