diff --git a/src/ReC.Application/Endpoints/Commands/GetOrCreateCommand.cs.cs b/src/ReC.Application/Endpoints/Commands/GetOrCreateCommand.cs.cs new file mode 100644 index 0000000..f0f5c73 --- /dev/null +++ b/src/ReC.Application/Endpoints/Commands/GetOrCreateCommand.cs.cs @@ -0,0 +1,9 @@ +using MediatR; +using ReC.Domain.Entities; + +namespace ReC.Application.Endpoints.Commands; + +public class GetOrCreateCommand : IRequest +{ + public string Uri { get; init; } = null!; +}