1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/MailService/IMailService.cs
2022-08-14 17:32:48 -07:00

30 lines
671 B
C#

using System;
namespace Teknik.MailService
{
public interface IMailService
{
bool AccountExists(string username);
DateTime LastActive(string username);
bool IsEnabled(string username);
bool CreateAccount(string username, string password, long size);
bool EditPassword(string username, string password);
long GetMaxSize(string username);
bool EditMaxSize(string username, long size);
bool EditMaxEmailsPerDay(string username, int maxPerDay);
bool EnableAccount(string username);
bool DisableAccount(string username);
bool DeleteAccount(string username);
}
}