Files
TowerDefence/My project/Library/PackageCache/com.unity.collab-proxy@3351acaba9c9/Editor/Views/PendingChanges/CreatedChangesetData.cs
Caleb Sandford deQuincey 334021d04e Started project
2025-11-14 17:30:41 +00: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;
}
}
}