2024-07-09 01:05:16 +02:00
|
|
|
using System;
|
|
|
|
|
using Wino.Core.Domain.Enums;
|
|
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
namespace Wino.Core.Domain.Models.Accounts;
|
|
|
|
|
|
|
|
|
|
public class UnreadItemCountResult
|
2024-07-09 01:05:16 +02:00
|
|
|
{
|
2025-02-16 11:54:23 +01:00
|
|
|
public Guid FolderId { get; set; }
|
|
|
|
|
public Guid AccountId { get; set; }
|
|
|
|
|
public SpecialFolderType SpecialFolderType { get; set; }
|
|
|
|
|
public int UnreadItemCount { get; set; }
|
2024-07-09 01:05:16 +02:00
|
|
|
}
|