Skip to content

Commit f50208a

Browse files
committed
regen
1 parent 1ddc6a3 commit f50208a

File tree

120 files changed

+711
-591
lines changed

Some content is hidden

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

120 files changed

+711
-591
lines changed

Appwrite/Models/AlgoArgon2.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
using System;
23
using System.Linq;
34
using System.Collections.Generic;

Appwrite/Models/AlgoBcrypt.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
using System;
23
using System.Linq;
34
using System.Collections.Generic;

Appwrite/Models/AlgoMd5.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
using System;
23
using System.Linq;
34
using System.Collections.Generic;

Appwrite/Models/AlgoPhpass.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
using System;
23
using System.Linq;
34
using System.Collections.Generic;

Appwrite/Models/AlgoScrypt.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
using System;
23
using System.Linq;
34
using System.Collections.Generic;

Appwrite/Models/AlgoScryptModified.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
using System;
23
using System.Linq;
34
using System.Collections.Generic;

Appwrite/Models/AlgoSha.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
using System;
23
using System.Linq;
34
using System.Collections.Generic;

Appwrite/Models/AttributeBoolean.cs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
using System;
23
using System.Linq;
34
using System.Collections.Generic;
@@ -28,10 +29,10 @@ public class AttributeBoolean
2829
public bool? Array { get; private set; }
2930

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

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

3637
[JsonPropertyName("default")]
3738
public bool? @Default { get; private set; }
@@ -53,8 +54,8 @@ public AttributeBoolean(
5354
Error = error;
5455
Required = required;
5556
Array = array;
56-
createdAt = createdAt;
57-
updatedAt = updatedAt;
57+
CreatedAt = createdAt;
58+
UpdatedAt = updatedAt;
5859
@Default = xdefault;
5960
}
6061

@@ -78,8 +79,8 @@ public AttributeBoolean(
7879
{ "error", Error },
7980
{ "required", Required },
8081
{ "array", Array },
81-
{ "$createdAt", createdAt },
82-
{ "$updatedAt", updatedAt },
82+
{ "$createdAt", CreatedAt },
83+
{ "$updatedAt", UpdatedAt },
8384
{ "default", @Default }
8485
};
8586
}

Appwrite/Models/AttributeDatetime.cs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
using System;
23
using System.Linq;
34
using System.Collections.Generic;
@@ -28,10 +29,10 @@ public class AttributeDatetime
2829
public bool? Array { get; private set; }
2930

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

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

3637
[JsonPropertyName("format")]
3738
public string Format { get; private set; }
@@ -57,8 +58,8 @@ public AttributeDatetime(
5758
Error = error;
5859
Required = required;
5960
Array = array;
60-
createdAt = createdAt;
61-
updatedAt = updatedAt;
61+
CreatedAt = createdAt;
62+
UpdatedAt = updatedAt;
6263
Format = format;
6364
@Default = xdefault;
6465
}
@@ -84,8 +85,8 @@ public AttributeDatetime(
8485
{ "error", Error },
8586
{ "required", Required },
8687
{ "array", Array },
87-
{ "$createdAt", createdAt },
88-
{ "$updatedAt", updatedAt },
88+
{ "$createdAt", CreatedAt },
89+
{ "$updatedAt", UpdatedAt },
8990
{ "format", Format },
9091
{ "default", @Default }
9192
};

Appwrite/Models/AttributeEmail.cs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
using System;
23
using System.Linq;
34
using System.Collections.Generic;
@@ -28,10 +29,10 @@ public class AttributeEmail
2829
public bool? Array { get; private set; }
2930

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

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

3637
[JsonPropertyName("format")]
3738
public string Format { get; private set; }
@@ -57,8 +58,8 @@ public AttributeEmail(
5758
Error = error;
5859
Required = required;
5960
Array = array;
60-
createdAt = createdAt;
61-
updatedAt = updatedAt;
61+
CreatedAt = createdAt;
62+
UpdatedAt = updatedAt;
6263
Format = format;
6364
@Default = xdefault;
6465
}
@@ -84,8 +85,8 @@ public AttributeEmail(
8485
{ "error", Error },
8586
{ "required", Required },
8687
{ "array", Array },
87-
{ "$createdAt", createdAt },
88-
{ "$updatedAt", updatedAt },
88+
{ "$createdAt", CreatedAt },
89+
{ "$updatedAt", UpdatedAt },
8990
{ "format", Format },
9091
{ "default", @Default }
9192
};

0 commit comments

Comments
 (0)