1+
12using System ;
23using System . Linq ;
34using System . Collections . Generic ;
@@ -28,10 +29,10 @@ public class AttributeDatetime
2829public 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" ) ]
3738public string Format { get ; private set ; }
@@ -57,8 +58,8 @@ public AttributeDatetime(
5758Error = error ;
5859Required = required ;
5960Array = array ;
60- createdAt = createdAt ;
61- updatedAt = updatedAt ;
61+ CreatedAt = createdAt ;
62+ UpdatedAt = updatedAt ;
6263Format = 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} ;