Contacts, thread animation and image preview control improvements.

This commit is contained in:
Burak Kaan Köse
2026-02-09 22:39:30 +01:00
parent e559a79506
commit 0999c71578
26 changed files with 1636 additions and 756 deletions
@@ -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);