added postgresql integration for user permissions

This commit is contained in:
Atakan Kayman
2026-05-31 15:54:46 +03:00
parent 374067dd2e
commit 7e18f84c42
10 changed files with 558 additions and 103 deletions
@@ -0,0 +1,24 @@
using System;
namespace UserPermissionTest_CS_WinForms
{
public class Permission
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public override string ToString()
{
return Name;
}
public Permission Clone()
{
return new Permission
{
Id = this.Id,
Name = this.Name
};
}
}
}