Squidex Client Library

Is there any way we can get the fields of a schema or all schema with his fields with the C# Client library?

sure

var schema = await service.CreateSchemasClient().GetSchemaAsync("app", "schema");

var fields = schema.Fields;