<PackageReference Include="System.Text.Json" Version="8.0.0-rc.2.23479.6" />

JsonIgnoreCondition

public enum JsonIgnoreCondition
Controls how the JsonIgnoreAttribute ignores properties on serialization and deserialization.
Always = 1

Property is always ignored.

Never = 0

Property is always serialized and deserialized, regardless of IgnoreNullValues configuration.

Property is ignored only if it equals the default value for its type.

Property is ignored if its value is null. This is applied only to reference-type properties and fields.