blob: 77001e4cf9f5198b9619b3e3cfce95a28c1a270f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace SMAPI.Tests.ModApiProvider.Framework
{
/// <summary>The base class for <see cref="SimpleApi"/>.</summary>
public class BaseApi
{
/*********
** Test interface
*********/
/// <summary>A property inherited from a base class.</summary>
public string? InheritedProperty { get; set; }
}
}
|