You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there, I'm really happy with the project, but I do have a question, I'm using the fluent configuration, and I want to Ignore the property that has the attribut JsonIgnore:
public class CreateRequest
{
public CreateRequest()
{
}
public string Url { get; set; }
[JsonIgnore]
public string? CreatedBy { get; set; }
}
Hi there, I'm really happy with the project, but I do have a question, I'm using the fluent configuration, and I want to Ignore the property that has the attribut JsonIgnore:
At the moment the result is:
I wish I could have like:
without needing to add the [TsIgnore]. Is that possible? I read the documentation, and didn't find how to do it by there.
The text was updated successfully, but these errors were encountered: