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

18 lines
470 B
C#
Raw Normal View History

2024-04-18 01:44:37 +02:00
using System;
using Wino.Core.Domain.Enums;
2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Models.MailItem;
public class MailDetailInformation
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:54:23 +01:00
public string Id { get; set; }
2024-04-18 01:44:37 +02:00
2025-02-16 11:54:23 +01:00
public Guid AccountId { get; set; }
public Guid FolderId { get; set; }
public string RemoteFolderId { get; set; }
public SpecialFolderType SpecialFolderType { get; set; }
public bool IsRead { get; set; }
public bool IsFlagged { get; set; }
public bool IsDraft { get; set; }
2024-04-18 01:44:37 +02:00
}