11 lines
194 B
C#
11 lines
194 B
C#
using Project.Model;
|
|
namespace Project.Persistence;
|
|
|
|
public static class SaveNewLogin
|
|
{
|
|
public static void SaveUser(string username, string password, string email)
|
|
{
|
|
|
|
}
|
|
}
|