using System;
using System.Collections.Generic;
namespace Wino.Core.Domain.Models.MailItem
{
///
/// 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.
///
public interface IMailHashContainer
{
IEnumerable GetContainingIds();
}
}