Nexus/Library/PackageCache/com.unity.collab-proxy@3351acaba9c9/Editor/_Deprecated/WebApi/OrganizationCredentials.cs

21 lines
639 B
C#
Raw Permalink Normal View History

2026-01-06 17:23:00 +01:00
using System;
using System.ComponentModel;
using Unity.Plastic.Newtonsoft.Json;
// Placeholder. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("OrganizationCredentials is deprecated and will be removed in a future release", false)]
public class OrganizationCredentials
{
// Placeholder. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("user")]
public string User { get; set; }
// Placeholder. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[JsonProperty("password")]
public string Password { get; set; }
}