/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Features/JsonPatch/test/TestObjectModels/SimpleObject.cs
22 строки
781 B
Pranav K
Use file scoped namespaces (#38076)
06 ноя 2021, 03:52
Не верифицирован
06 ноя 2021, 03:52
a450cb6
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Collections.Generic; namespace Microsoft.AspNetCore.JsonPatch; public class SimpleObject { public List<SimpleObject> SimpleObjectList { get; set; } public List<int> IntegerList { get; set; } public IList<int> IntegerIList { get; set; } public int IntegerValue { get; set; } public int AnotherIntegerValue { get; set; } public string StringProperty { get; set; } public string AnotherStringProperty { get; set; } public decimal DecimalValue { get; set; } public double DoubleValue { get; set; } public float FloatValue { get; set; } public Guid GuidValue { get; set; } }