mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-01 19:12:57 +00:00
13 lines
265 B
C#
13 lines
265 B
C#
using System;
|
|
|
|
namespace CleanArchitecture.Shared.Events.User;
|
|
|
|
public sealed class UserUpdatedEvent : DomainEvent
|
|
{
|
|
public Guid TenantId { get; }
|
|
|
|
public UserUpdatedEvent(Guid userId, Guid tenantId) : base(userId)
|
|
{
|
|
TenantId = tenantId;
|
|
}
|
|
} |