CSharp-Single-EFCore/Bunny.Service/IService/IBaseService.cs

6 lines
95 B
C#
Raw Normal View History

namespace Bunny.Service.IService;
2024-08-08 22:23:36 +08:00
public interface IBaseService
{
string TestIndex();
}