WuhuIslandTesting/Library/PackageCache/com.unity.collab-proxy@1.17.7/Editor/PlasticSCM/WebApi/OrganizationCredentials.cs
2025-01-07 02:06:59 +01:00

11 lines
220 B
C#

using Unity.Plastic.Newtonsoft.Json;
public class OrganizationCredentials
{
[JsonProperty("user")]
public string User { get; set; }
[JsonProperty("password")]
public string Password { get; set; }
}