using FictionArchive.Service.Shared.Services.EventBus; namespace FictionArchive.Service.AuthenticationService.Models.IntegrationEvents; public class AuthUserAddedEvent : IIntegrationEvent { public string OAuthProviderId { get; set; } public string InviterOAuthProviderId { get; set; } // The email of the user that created the event public string EventUserEmail { get; set; } // The username of the user that created the event public string EventUserUsername { get; set; } }