2024-07-15 00:00:38 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
|
namespace Wino.Core.Domain.Models.MailItem;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// An interface that returns the UniqueId store for IMailItem.
|
|
|
|
|
|
/// For threads, it may be multiple items.
|
|
|
|
|
|
/// For single mails, it'll always be one item.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public interface IMailHashContainer
|
2024-07-15 00:00:38 +02:00
|
|
|
|
{
|
2025-02-16 11:54:23 +01:00
|
|
|
|
IEnumerable<Guid> GetContainingIds();
|
2024-07-15 00:00:38 +02:00
|
|
|
|
}
|