File: Person.cs
Web Access
Project: src\src\test\integration\System.Windows.Forms.IntegrationTests.Common\System.Windows.Forms.IntegrationTests.Common.csproj (System.Windows.Forms.IntegrationTests.Common)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Windows.Forms.IntegrationTests.Common;
 
public class Person
{
    public Person(int id, string name)
    {
        Id = id;
        Name = name;
    }
 
    public int Id { get; set; }
    public string Name { get; set; }
}