wuxianshengcong/Library/PackageCache/com.unity.collab-proxy@2.5.2/Editor/PlasticSCM/WebApi/OrganizationCredentials.cs
2024-12-30 12:56:27 +08:00

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