const users = [
{
id: 1,
name: "John Doe"
},
{
id: 2,
name: "Jane Doe"
]
public class User {
[Required]
public Guid Id {get;set;} = null!;
public string Name {get;set;} = String.Empty;
}
export interface User {
id: string;
name?: string;
}
let r = await fetch('url', {
headers: {Authorization: 'Bearer {token}'}
})
having string_agg(address,',' order by address_order) = parseAddressInfo(text_from_api)