8 lines
127 B
C#
8 lines
127 B
C#
|
using Bunny.Dao.Models.System;
|
|||
|
|
|||
|
namespace Bunny.Service.IService;
|
|||
|
|
|||
|
public interface IBaseService
|
|||
|
{
|
|||
|
string TestIndex();
|
|||
|
}
|