Files
SHOUTING_PIRATE f5928e04c4 intial commit
2025-07-21 17:10:16 +01:00

21 lines
648 B
C#

using System;
using System.ComponentModel;
using Unity.Plastic.Newtonsoft.Json;
// Internal usage. 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
{
// 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; }
}