How to combine [JsonPropertyName] and [ObservableProperty] on the same member?
I'm trying to combine [JsonPropertyName] with [ObservableProperty] to assign the value "last_updated" of my json to the property "Updated" of my object. I tried this code: [ObservableProperty] [JsonPropertyName("last_updated")] public string updated; But it is not working: 'Updated' is null after…