StellarXipher/Library/PackageCache/com.unity.collab-proxy@001b54a8988a/Editor/_Deprecated/WebApi/OrganizationCredentials.cs
2025-02-06 16:45:46 -05:00

19 lines
535 B
C#

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; }
}