You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
894 B
29 lines
894 B
#nullable disable
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.Controller.Persistence;
|
|
|
|
public interface IMediaAttachmentRepository
|
|
{
|
|
/// <summary>
|
|
/// Gets the media attachments.
|
|
/// </summary>
|
|
/// <param name="filter">The query.</param>
|
|
/// <returns>IEnumerable{MediaAttachment}.</returns>
|
|
IReadOnlyList<MediaAttachment> GetMediaAttachments(MediaAttachmentQuery filter);
|
|
|
|
/// <summary>
|
|
/// Saves the media attachments.
|
|
/// </summary>
|
|
/// <param name="id">The identifier.</param>
|
|
/// <param name="attachments">The attachments.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
void SaveMediaAttachments(Guid id, IReadOnlyList<MediaAttachment> attachments, CancellationToken cancellationToken);
|
|
}
|