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

B.cs « TestData2 « sandbox - github.com/aspnet/MessagePack-CSharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9c4029ec0c7e984b8ca4acbaeb7c401b3a2c1bb (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 B
{
    public List<A?>? ass; public C? c; public int a;
}