mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
7f1efd40d5
- Added upload limits to multiple spots
28 lines
626 B
C#
28 lines
626 B
C#
using System;
|
|
|
|
namespace Teknik.MailService
|
|
{
|
|
public interface IMailService
|
|
{
|
|
bool AccountExists(string username);
|
|
|
|
DateTime LastActive(string username);
|
|
|
|
bool Enabled(string username);
|
|
|
|
void CreateAccount(string username, string password, long size);
|
|
|
|
void EditPassword(string username, string password);
|
|
|
|
void EditMaxSize(string username, long size);
|
|
|
|
void EditMaxEmailsPerDay(string username, int maxPerDay);
|
|
|
|
void EnableAccount(string username);
|
|
|
|
void DisableAccount(string username);
|
|
|
|
void DeleteAccount(string username);
|
|
}
|
|
}
|