File: Thing.cs
Web Access
Project: src\src\Extensions\Features\test\Microsoft.Extensions.Features.Tests.csproj (Microsoft.Extensions.Features.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Http.Features;
 
public class Thing : IThing
{
    public string Hello()
    {
        return "World";
    }
}