Skip to content

Commit de455ce

Browse files
committed
fix: templates
1 parent 35d7d75 commit de455ce

File tree

120 files changed

+789
-669
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

+789
-669
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: 10 additions & 9 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,13 +29,13 @@ 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")]
37-
public bool? @Default { get; private set; }
38+
public bool? Default { get; private set; }
3839

3940
public AttributeBoolean(
4041
string key,
@@ -53,9 +54,9 @@ public AttributeBoolean(
5354
Error = error;
5455
Required = required;
5556
Array = array;
56-
createdAt = createdAt;
57-
updatedAt = updatedAt;
58-
@Default = xdefault;
57+
CreatedAt = createdAt;
58+
UpdatedAt = updatedAt;
59+
Default = xdefault;
5960
}
6061

6162
public static AttributeBoolean From(Dictionary<string, object> map) => new AttributeBoolean(
@@ -78,9 +79,9 @@ public AttributeBoolean(
7879
{ "error", Error },
7980
{ "required", Required },
8081
{ "array", Array },
81-
{ "$createdAt", createdAt },
82-
{ "$updatedAt", updatedAt },
83-
{ "default", @Default }
82+
{ "$createdAt", CreatedAt },
83+
{ "$updatedAt", UpdatedAt },
84+
{ "default", Default }
8485
};
8586
}
8687
}

Appwrite/Models/AttributeDatetime.cs

Lines changed: 10 additions & 9 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,16 +29,16 @@ 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; }
3839

3940
[JsonPropertyName("default")]
40-
public string? @Default { get; private set; }
41+
public string? Default { get; private set; }
4142

4243
public AttributeDatetime(
4344
string key,
@@ -57,10 +58,10 @@ 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;
63-
@Default = xdefault;
64+
Default = xdefault;
6465
}
6566

6667
public static AttributeDatetime From(Dictionary<string, object> map) => new AttributeDatetime(
@@ -84,10 +85,10 @@ 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 },
90-
{ "default", @Default }
91+
{ "default", Default }
9192
};
9293
}
9394
}

Appwrite/Models/AttributeEmail.cs

Lines changed: 10 additions & 9 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,16 +29,16 @@ 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; }
3839

3940
[JsonPropertyName("default")]
40-
public string? @Default { get; private set; }
41+
public string? Default { get; private set; }
4142

4243
public AttributeEmail(
4344
string key,
@@ -57,10 +58,10 @@ 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;
63-
@Default = xdefault;
64+
Default = xdefault;
6465
}
6566

6667
public static AttributeEmail From(Dictionary<string, object> map) => new AttributeEmail(
@@ -84,10 +85,10 @@ 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 },
90-
{ "default", @Default }
91+
{ "default", Default }
9192
};
9293
}
9394
}

0 commit comments

Comments
 (0)