File: Models\Person.cs
Web Access
Project: src\playground\Elasticsearch\Elasticsearch.ApiService\Elasticsearch.ApiService.csproj (Elasticsearch.ApiService)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Elasticsearch.ApiService.Models;
 
public class Person
{
    public required string FirstName { get; set; }
    public required string LastName { get; set; }
}