Project_Keywi/Project.Persistence/NewLoginStorage.cs
2025-04-14 16:59:18 +02:00

13 lines
379 B
C#

using Project.Model;
namespace Project.Persistence;
public static class NewLoginStorage
{
private static readonly string FilePath = "C:/Users/lowns/desktop/users.txt";
public static void SaveUser(CreateLogin user)
{
var line = $"{user.NewLoginName}:{user.NewMasterPassword}:{user.NewEmail}";
File.AppendAllLines(FilePath, new[] { line });
}
}