blob: b5870baa7ef3616e3c437e2e3326f3894fef8883 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#nullable disable
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; }
}
}
|