Skip to content

Commit

Permalink
Build Models
Browse files Browse the repository at this point in the history
  • Loading branch information
dbirman authored and github-actions[bot] committed Mar 21, 2024
1 parent 1c247bf commit 8f9a1ea
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion models/csharp/dock/BucketModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@
public struct BucketModel
{
public string Token;
public string Bucket;
public string Password;
}
1 change: 0 additions & 1 deletion models/csharp/dock/LoadModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@

public struct LoadModel
{
public string Bucket;
public string Password;
}
1 change: 0 additions & 1 deletion models/csharp/dock/SaveModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@

public struct SaveModel
{
public string Bucket;
public string Password;
}
2 changes: 1 addition & 1 deletion models/schemas/dock/BucketModel.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"properties": {"Token": {"title": "Token", "type": "string"}, "Bucket": {"title": "Bucket", "type": "string"}, "Password": {"title": "Password", "type": "string"}}, "required": ["Token", "Bucket", "Password"], "title": "BucketModel", "type": "object"}
{"properties": {"Token": {"title": "Token", "type": "string"}, "Password": {"title": "Password", "type": "string"}}, "required": ["Token", "Password"], "title": "BucketModel", "type": "object"}
2 changes: 1 addition & 1 deletion models/schemas/dock/LoadModel.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"properties": {"Bucket": {"title": "Bucket", "type": "string"}, "Password": {"title": "Password", "type": "string"}}, "required": ["Bucket", "Password"], "title": "LoadModel", "type": "object"}
{"properties": {"Password": {"title": "Password", "type": "string"}}, "required": ["Password"], "title": "LoadModel", "type": "object"}
2 changes: 1 addition & 1 deletion models/schemas/dock/SaveModel.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"properties": {"Bucket": {"title": "Bucket", "type": "string"}, "Password": {"title": "Password", "type": "string"}}, "required": ["Bucket", "Password"], "title": "SaveModel", "type": "object"}
{"properties": {"Password": {"title": "Password", "type": "string"}}, "required": ["Password"], "title": "SaveModel", "type": "object"}

0 comments on commit 8f9a1ea

Please sign in to comment.