Fix the sorting when adding mails.

This commit is contained in:
Burak Kaan Köse
2025-11-01 12:35:47 +01:00
parent b60832a270
commit ae9e35e091
6 changed files with 37 additions and 4 deletions
@@ -0,0 +1,9 @@
using System;
namespace Wino.Core.Domain.Interfaces;
public interface IMailListItemSorting
{
DateTime SortingDate { get; }
string SortingName { get; }
}