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

8 lines
127 B
C#
Raw Normal View History

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