VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.unity.collab-proxy/Editor/Views/Branch/SerializableBranchesTabState.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03:00

20 lines
428 B
C#

using System;
namespace Unity.PlasticSCM.Editor.Views.Branches
{
[Serializable]
internal class SerializableBranchesTabState
{
internal bool ShowHiddenBranches;
internal bool IsInitialized { get; private set; }
internal SerializableBranchesTabState(bool showHiddenBranches)
{
ShowHiddenBranches = showHiddenBranches;
IsInitialized = true;
}
}
}