Created unity project

This commit is contained in:
2024-12-07 20:55:50 +01:00
parent 539250d964
commit 54fe327198
13758 changed files with 865324 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
using System.ComponentModel;
using Unity.Plastic.Newtonsoft.Json;
using PlasticGui.WebApi.Responses;
namespace Unity.PlasticSCM.Editor.WebApi
{
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
public class ChangesetFromCollabCommitResponse
{
/// <summary>
/// Error caused by the request.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("error")]
public ErrorResponse.ErrorFields Error { get; set; }
/// <summary>
/// The repository ID
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("repId")]
public uint RepId { get; set; }
/// <summary>
/// The repository module ID
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("repModuleId")]
public uint RepModuleId { get; set; }
/// <summary>
/// The changeset ID
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("changesetId")]
public long ChangesetId { get; set; }
/// <summary>
/// The branch ID
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("branchId")]
public long BranchId { get; set; }
}
}

View File

@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 118b64466f3c7c24e98e147660e2eb98
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,31 @@
using System.ComponentModel;
using Unity.Plastic.Newtonsoft.Json;
using PlasticGui.WebApi.Responses;
namespace Unity.PlasticSCM.Editor.WebApi
{
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
public class IsCollabProjectMigratedResponse
{
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("error")]
public ErrorResponse.ErrorFields Error { get; set; }
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("IsMigrated")]
public bool IsMigrated { get; set; }
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("WebServerUri")]
public string WebServerUri { get; set; }
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("PlasticCloudOrganizationName")]
public string PlasticCloudOrganizationName { get; set; }
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("Credentials")]
public CredentialsResponse Credentials { get; set; }
}
}

View File

@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: b6aa72bc8240f514988bcccf4cf3cef5
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,18 @@
using System.ComponentModel;
using Unity.Plastic.Newtonsoft.Json;
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
public class OrganizationCredentials
{
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("user")]
public string User { get; set; }
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("password")]
public string Password { get; set; }
}

View File

@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 2e38b4690fec967478ecffad444155e6
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant: