Files
Wino-Mail/Wino.Core.Domain/Models/MailItem/IMailItemThread.cs

16 lines
463 B
C#
Raw Normal View History

2024-04-18 01:44:37 +02:00
using System.Collections.ObjectModel;
2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Models.MailItem;
/// <summary>
/// Interface that represents conversation threads.
/// Even though this type has 1 single UI representation most of the time,
/// it can contain multiple IMailItem.
/// </summary>
public interface IMailItemThread : IMailItem
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:54:23 +01:00
ObservableCollection<IMailItem> ThreadItems { get; }
IMailItem LatestMailItem { get; }
IMailItem FirstMailItem { get; }
2024-04-18 01:44:37 +02:00
}