namespace ChapterX.API.DTOs { public class CollaborationDto { public int UserId { get; set; } public int StoryId { get; set; } public DateTime CreatedAt { get; set; } // Navigation public UserDto User { get; set; } = null!; public StoryDto Story { get; set; } = null!; public ICollection Roles { get; set; } = []; public ICollection PermissionLevels { get; set; } = []; } }