mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
f5d1f94eef
- Made Modify Vault use markdown preview
24 lines
560 B
C#
24 lines
560 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Teknik.GitService
|
|
{
|
|
public interface IGitService
|
|
{
|
|
bool AccountExists(string username);
|
|
|
|
DateTime LastActive(string username);
|
|
|
|
void CreateAccount(string username, string email, string password);
|
|
|
|
void EditPassword(string username, string email, string password);
|
|
|
|
void EnableAccount(string username, string email);
|
|
|
|
void DisableAccount(string username, string email);
|
|
|
|
void DeleteAccount(string username);
|
|
}
|
|
}
|