Skip to content

Commit 5a8f654

Browse files
committed
fix: Meta property generation in dotnet
1 parent 1e32929 commit 5a8f654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aidbox_sdk/generator/dotnet.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
(= (:type element) "Meta")
137137
(if (:profile element)
138138
(format "public new Meta Meta { get; } = new() { Profile = [\"%s\"] };" (:profile element))
139-
(format "public %s%s Meta { get; set; }" required' name'))
139+
(format "public %sMeta %s { get; set; }" required' name'))
140140

141141
:else
142142
(str "public " type " " name' " { get; set; }"

0 commit comments

Comments
 (0)