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

28 lines
730 B
C#

using Codice.CM.Common;
namespace Unity.PlasticSCM.Editor.Views.PendingChanges
{
internal class CreatedChangesetData
{
internal enum Type
{
Checkin,
Shelve
}
internal Type OperationType { get; private set; }
internal long CreatedChangesetId { get; private set; }
internal RepositorySpec RepositorySpec { get; private set; }
internal CreatedChangesetData(
Type operationType,
long createdChangesetId,
RepositorySpec repositorySpec)
{
OperationType = operationType;
CreatedChangesetId = createdChangesetId;
RepositorySpec = repositorySpec;
}
}
}