A Circle must pre-exist before beeing used by an authorization

This commit is contained in:
Paul Schneider 2026-08-21 16:40:24 +01:00
commit 73fa3fa8cd
3 changed files with 21 additions and 6 deletions

View file

@ -0,0 +1,10 @@
using Yavsc.Abstract.Identity.Security;
namespace Yavsc.Abstract.BlogSpot;
public class PostAccessControlRulePayload : ICircleAuthorization
{
public long CircleId { get; set; }
public long BlogPostId { get; set; }
}