16 lines
507 B
C#
16 lines
507 B
C#
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; }
|
|
} |