namespace Yavsc.Api.Client.Dtos; /// /// Wire format for GET /api/blogacl and friends. /// /// The server-side /// Yavsc.Models.Access.CircleAuthorizationToBlogPost EF entity /// carries virtual navigation properties (Target, /// Allowed) that pull in the full BlogPost and Circle graphs. /// The client never needs them: when showing the ACL of a post, the /// UI already has the post, and the circles are looked up by id /// against the list returned by GET /api/circle. /// public sealed class CircleAuthorizationDto { public long CircleId { get; set; } public long BlogPostId { get; set; } public bool Comment { get; set; } }