Revert "feat: introduce Shared.Contracts for account management and refactor related services"

This reverts commit 9469a5f76e.
This commit is contained in:
2025-12-13 15:49:31 +03:30
parent c9882f0b59
commit 91259046f6
50 changed files with 1622 additions and 520 deletions

View File

@@ -0,0 +1,21 @@
using GozareshgirProgramManager.Domain.RoleAgg.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using GozareshgirProgramManager.Domain._Common;
namespace GozareshgirProgramManager.Domain.PermissionAgg.Entities;
public class Permission
{
public long Id { get; private set; }
public int Code { get; private set; }
public Role Role { get; private set; }
public Permission(int code)
{
Code = code;
}
}