blob: 8092e3e7fa21e80f99fb1b3df6a4b4b28d0a2c67 (
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; }
}
}
|