@@ -18,25 +18,25 @@ public record PairValue(Pair Value) : Value;
1818
1919public record RecordDataModel
2020{
21- public ObjectId Id { get ; init ; }
22-
23- public required int Int { get ; init ; }
24- public int ? IntOpt { get ; init ; }
25-
26- public required string String { get ; init ; }
27- public string ? StringOpt { get ; init ; }
28-
29- public required int [ ] Array { get ; init ; }
30- public int [ ] ? ArrayOpt { get ; init ; }
31-
32- public required Value Value { get ; init ; }
33- public Value ? ValueOpt { get ; init ; }
34-
35- public required Value [ ] ValueArray { get ; init ; }
36- public Value [ ] ? ValueArrayOpt { get ; init ; }
37-
38- public required Pair Record { get ; init ; }
21+ // public ObjectId Id { get; init; }
22+ //
23+ // public required int Int { get; init; }
24+ // public int? IntOpt { get; init; }
25+ //
26+ // public required string String { get; init; }
27+ // public string? StringOpt { get; init; }
28+ //
29+ // public required int[] Array { get; init; }
30+ // public int[]? ArrayOpt { get; init; }
31+
32+ // public required Value Value { get; init; }
33+ // public Value? ValueOpt { get; init; }
34+
35+ // public required Value[] ValueArray { get; init; }
36+ // public Value[]? ValueArrayOpt { get; init; }
37+
38+ // public required Pair Record { get; init; }
3939 public Pair ? RecordOpt { get ; init ; }
4040
41- public required Dictionary < string , int > Map { get ; init ; }
41+ // public required Dictionary<string, int> Map { get; init; }
4242}
0 commit comments