Files
Umbraco-CMS/src/Umbraco.Core/Deploy/ArtifactDependencyMode.cs

18 lines
373 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
}
}