Add image management functionality: introduce Image entity and related API endpoints, update database schema to support image storage, and enhance UI with a new gallery feature for image selection and upload. Update translations for gallery-related terms.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
using LiteCqrs;
|
||||
using TeleWave.Application.Common.Models;
|
||||
|
||||
namespace TeleWave.Application.Images.DeleteImage;
|
||||
|
||||
/// <summary>Удаляет изображение из реестра и его файл. Ссылки на него у потребителей могут повиснуть
|
||||
/// (отдача вернёт 404, UI покажет заглушку).</summary>
|
||||
public sealed record DeleteImageCommand(Guid Id) : ICommand<Result>;
|
||||
Reference in New Issue
Block a user