mirror of
https://github.com/denglihong2007/CRSim
synced 2026-08-01 14:16:14 +08:00
10 lines
174 B
C#
10 lines
174 B
C#
namespace CRSim.Core.Abstractions
|
|
{
|
|
public interface IApi
|
|
{
|
|
string Name { get; }
|
|
string BaseApi { get; }
|
|
string UpdateApi { get; }
|
|
}
|
|
}
|