Files
GameDevTVObstacleDodge/Library/PackageCache/com.unity.collab-proxy@1ec4e416a4af/Editor/Views/PendingChanges/CreatedChangesetData.cs

28 lines
730 B
C#
Raw Normal View History

2026-01-08 16:50:20 +00:00
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;
}
}
}