playtest-unity/playtest/Library/PackageCache/com.unity.collab-proxy@2.0.4/Editor/PlasticSCM/WebApi/OrganizationCredentials.cs

12 lines
220 B
C#
Raw Normal View History

2023-06-19 23:21:21 -04:00
using Unity.Plastic.Newtonsoft.Json;
public class OrganizationCredentials
{
[JsonProperty("user")]
public string User { get; set; }
[JsonProperty("password")]
public string Password { get; set; }
}