Contacts, thread animation and image preview control improvements.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
using Wino.Core.Domain.Entities.Shared;
|
||||
|
||||
namespace Wino.Core.Domain.Models.Contacts;
|
||||
|
||||
public record PagedContactsResult(
|
||||
IReadOnlyList<AccountContact> Contacts,
|
||||
int TotalCount,
|
||||
bool HasMore,
|
||||
int Offset,
|
||||
int PageSize);
|
||||
@@ -1,6 +1,12 @@
|
||||
using MimeKit;
|
||||
using System.Collections.Generic;
|
||||
using MimeKit;
|
||||
using Wino.Core.Domain.Entities.Mail;
|
||||
using Wino.Core.Domain.Entities.Shared;
|
||||
|
||||
namespace Wino.Core.Domain.Models.MailItem;
|
||||
|
||||
public record NewMailItemPackage(MailCopy Copy, MimeMessage Mime, string AssignedRemoteFolderId);
|
||||
public record NewMailItemPackage(
|
||||
MailCopy Copy,
|
||||
MimeMessage Mime,
|
||||
string AssignedRemoteFolderId,
|
||||
IReadOnlyList<AccountContact> ExtractedContacts = null);
|
||||
|
||||
Reference in New Issue
Block a user