1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-12 21:38:38 +00:00
RobertBeekman 7b71ee05da Workshop - Refactor markdown editor
Workshop - Add changelog during upload
2024-04-13 16:54:57 +02:00

6 lines
250 B
C#

namespace Artemis.WebClient.Workshop.Handlers.UploadHandlers;
public interface IEntryUploadHandler
{
Task<EntryUploadResult> CreateReleaseAsync(long entryId, IEntrySource entrySource, string? changelog, CancellationToken cancellationToken);
}