Skip to content

Commit 35d7d75

Browse files
committed
chore: update title and desc
1 parent 9fcb2fb commit 35d7d75

File tree

122 files changed

+762
-845
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+762
-845
lines changed

Appwrite/Enums/ColumnStatus.cs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
using System;
2+
3+
namespace Appwrite.Enums
4+
{
5+
public class ColumnStatus : IEnum
6+
{
7+
public string Value { get; private set; }
8+
9+
public ColumnStatus(string value)
10+
{
11+
Value = value;
12+
}
13+
14+
public static ColumnStatus Available => new ColumnStatus("available");
15+
public static ColumnStatus Processing => new ColumnStatus("processing");
16+
public static ColumnStatus Deleting => new ColumnStatus("deleting");
17+
public static ColumnStatus Stuck => new ColumnStatus("stuck");
18+
public static ColumnStatus Failed => new ColumnStatus("failed");
19+
}
20+
}

Appwrite/Enums/DatabaseType.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
3+
namespace Appwrite.Enums
4+
{
5+
public class DatabaseType : IEnum
6+
{
7+
public string Value { get; private set; }
8+
9+
public DatabaseType(string value)
10+
{
11+
Value = value;
12+
}
13+
14+
public static DatabaseType Legacy => new DatabaseType("legacy");
15+
public static DatabaseType Tablesdb => new DatabaseType("tablesdb");
16+
}
17+
}

Appwrite/Models/AlgoArgon2.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
using System;
32
using System.Linq;
43
using System.Collections.Generic;

Appwrite/Models/AlgoBcrypt.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
using System;
32
using System.Linq;
43
using System.Collections.Generic;

Appwrite/Models/AlgoMd5.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
using System;
32
using System.Linq;
43
using System.Collections.Generic;

Appwrite/Models/AlgoPhpass.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
using System;
32
using System.Linq;
43
using System.Collections.Generic;

Appwrite/Models/AlgoScrypt.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
using System;
32
using System.Linq;
43
using System.Collections.Generic;

Appwrite/Models/AlgoScryptModified.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
using System;
32
using System.Linq;
43
using System.Collections.Generic;

Appwrite/Models/AlgoSha.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
using System;
32
using System.Linq;
43
using System.Collections.Generic;

Appwrite/Models/AttributeBoolean.cs

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
using System;
32
using System.Linq;
43
using System.Collections.Generic;
@@ -29,13 +28,13 @@ public class AttributeBoolean
2928
public bool? Array { get; private set; }
3029

3130
[JsonPropertyName("$createdAt")]
32-
public string CreatedAt { get; private set; }
31+
public string createdAt { get; private set; }
3332

3433
[JsonPropertyName("$updatedAt")]
35-
public string UpdatedAt { get; private set; }
34+
public string updatedAt { get; private set; }
3635

3736
[JsonPropertyName("default")]
38-
public bool? Default { get; private set; }
37+
public bool? @Default { get; private set; }
3938

4039
public AttributeBoolean(
4140
string key,
@@ -54,9 +53,9 @@ public AttributeBoolean(
5453
Error = error;
5554
Required = required;
5655
Array = array;
57-
CreatedAt = createdAt;
58-
UpdatedAt = updatedAt;
59-
Default = xdefault;
56+
createdAt = createdAt;
57+
updatedAt = updatedAt;
58+
@Default = xdefault;
6059
}
6160

6261
public static AttributeBoolean From(Dictionary<string, object> map) => new AttributeBoolean(
@@ -79,9 +78,9 @@ public AttributeBoolean(
7978
{ "error", Error },
8079
{ "required", Required },
8180
{ "array", Array },
82-
{ "$createdAt", CreatedAt },
83-
{ "$updatedAt", UpdatedAt },
84-
{ "default", Default }
81+
{ "$createdAt", createdAt },
82+
{ "$updatedAt", updatedAt },
83+
{ "default", @Default }
8584
};
8685
}
8786
}

0 commit comments

Comments
 (0)