/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Features/JsonPatch.SystemTextJson/test/TestObjectModels/SimpleObjectWithNestedObject.cs
29 строк
850 B
Artak
Added System.Text.Json serialization-based JsonPatch implementation (#61313)
22 апр 2025, 01:53
Не верифицирован
22 апр 2025, 01:53
b9e9970
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections.Generic; namespace Microsoft.AspNetCore.JsonPatch.SystemTextJson; public class SimpleObjectWithNestedObject { public int IntegerValue { get; set; } public NestedObject NestedObject { get; set; } public SimpleObject SimpleObject { get; set; } public InheritedObject InheritedObject { get; set; } public List<SimpleObject> SimpleObjectList { get; set; } public IList<SimpleObject> SimpleObjectIList { get; set; } public SimpleObjectWithNestedObject() { NestedObject = new NestedObject(); SimpleObject = new SimpleObject(); InheritedObject = new InheritedObject(); SimpleObjectList = new List<SimpleObject>(); } }