added "UserPermissionTesting_CS_WinForms" project

This commit is contained in:
Atakan Kayman
2026-05-31 15:08:26 +03:00
parent 1ea9de0042
commit 374067dd2e
26 changed files with 2213 additions and 427 deletions
@@ -0,0 +1,12 @@
using System.Collections.Generic;
namespace UserPermissionTest_CS_WinForms
{
public interface IUserRepository
{
List<User> LoadUsers();
void SaveUsers(List<User> users);
List<string> LoadPermissions();
void SavePermissions(List<string> permissions);
}
}