mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 12:09:34 +08:00
11 lines
238 B
C#
11 lines
238 B
C#
using Milimoe.FunGame.Core.Api.Transmittal;
|
|
|
|
namespace Milimoe.FunGame.Core.Interface.Addons
|
|
{
|
|
public interface IServerAddon
|
|
{
|
|
public SQLHelper? SQLHelper { get; }
|
|
public MailSender? MailSender { get; }
|
|
}
|
|
}
|