Net-Game/Library/PackageCache/com.unity.collab-proxy@50ac96531b63/Editor/_Deprecated/WebApi/OrganizationCredentials.cs
2025-03-28 08:33:16 -04: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; }
}