Welcome to mirror list, hosted at ThFree Co, Russian Federation.

A.cs « TestData2 « sandbox - github.com/aspnet/MessagePack-CSharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a7eeef9d0340440002b9e25c8cae8dac60feb856 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) All contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

#pragma warning disable SA1307 // Accessible fields should begin with upper-case letter
#pragma warning disable SA1401 // Fields should be private
#nullable enable

namespace TestData2;

[MessagePackObject(true)]
public class A
{
    public int a; public List<B?>? bs; public C? c;
}