Initial commit to new repository
This commit is contained in:
15
.decompiledproj/AxCopilot/Models/ApiAdapter.cs
Normal file
15
.decompiledproj/AxCopilot/Models/ApiAdapter.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace AxCopilot.Models;
|
||||
|
||||
public class ApiAdapter
|
||||
{
|
||||
[JsonPropertyName("id")]
|
||||
public string Id { get; set; } = "";
|
||||
|
||||
[JsonPropertyName("baseUrl")]
|
||||
public string BaseUrl { get; set; } = "";
|
||||
|
||||
[JsonPropertyName("credentialKey")]
|
||||
public string CredentialKey { get; set; } = "";
|
||||
}
|
||||
Reference in New Issue
Block a user