1-) .Net Core Web Api - Modellerin otomatik json a dönüştürür
Install-Package Microsoft.AspNetCore.Mvc.NewtonsoftJson
builder.Services.AddControllers()
.AddNewtonsoftJson(options =>
{
options.SerializerSettings.Formatting = Formatting.Indented;
});
var app = builder.Build();