(schema: Schema)
| 141 | |
| 142 | |
| 143 | def csharp_module_owner_stem(schema: Schema) -> str: |
| 144 | if schema.source_file and not schema.source_file.startswith("<"): |
| 145 | return Path(schema.source_file).stem |
| 146 | if schema.package: |
| 147 | return schema.package.replace(".", "_") |
| 148 | return "generated" |
| 149 | |
| 150 | |
| 151 | def csharp_schema_owner_name(schema: Schema) -> str: |
no test coverage detected