mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 08:44:29 +08:00
16 lines
392 B
C#
16 lines
392 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GFramework.Core.Tests.Architectures;
|
|
|
|
/// <summary>
|
|
/// 为 <see cref="ArchitectureContextTests" /> 提供的测试事件载荷。
|
|
/// </summary>
|
|
public sealed class TestEventV2
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置测试事件数据。
|
|
/// </summary>
|
|
public int Data { get; init; }
|
|
}
|