File: Models\Person.cs
Web Access
Project: src\src\Mvc\test\WebSites\XmlFormattersWebSite\XmlFormattersWebSite.csproj (XmlFormattersWebSite)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace XmlFormattersWebSite.Models;
 
public class Person
{
    public int Id { get; set; }
 
    public string Name { get; set; }
}