mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-21 19:49:34 +08:00
12 lines
281 B
C#
12 lines
281 B
C#
using Milimoe.FunGame.Core.Library.Constant;
|
|
|
|
namespace Milimoe.FunGame.Core.Interface.Base
|
|
{
|
|
public interface IMailSender
|
|
{
|
|
public string SenderMailAddress { get; }
|
|
public string SenderName { get; }
|
|
public string SenderPassword { get; }
|
|
}
|
|
}
|