mirror of
https://github.com/microsoft/autogen.git
synced 2025-10-03 03:57:36 +00:00
10 lines
167 B
C#
10 lines
167 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// CountUpdate.cs
|
|
|
|
namespace Samples;
|
|
|
|
public class CountUpdate
|
|
{
|
|
public int NewCount { get; set; }
|
|
}
|