mirror of
https://github.com/azaion/annotations.git
synced 2026-04-23 01:26:30 +00:00
8 lines
167 B
C#
8 lines
167 B
C#
using MediatR;
|
|
|
|
namespace Azaion.Common.DTO;
|
|
|
|
public class ImageCreatedEvent(string imagePath) : INotification
|
|
{
|
|
public string ImagePath { get; } = imagePath;
|
|
} |