2025-01-30 19:04:26 -05:00

12 lines
219 B
C#

// Copyright (c) Microsoft Corporation. All rights reserved.
// CountUpdate.cs
#region snippet_CountUpdate
namespace GettingStartedSample;
public class CountUpdate
{
public int NewCount { get; set; }
}
#endregion