Files
CartoonFPS/Library/PackageCache/com.unity.collab-proxy@c854d1f7d97f/Editor/Views/PendingChanges/CreatedChangesetData.cs

28 lines
730 B
C#
Raw Normal View History

2025-08-05 09:30:40 +01: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;
}
}
}