Editor/git/models/ForkContributionTarget.cs
namespace Sandbox.git.models;

/// <summary>
/// Where to contribute when working with a fork (self or parent).
/// </summary>
public enum ForkContributionTarget {
	Self,
	Parent
}