Files
components/LiteCharms.Features/Email/Models/Message.cs
T
2026-05-13 20:06:24 +02:00

20 lines
348 B
C#

namespace LiteCharms.Features.Email.Models;
public class Message : IDisposable
{
public Party? Sender { get; set; }
public Party? Recipient { get; set; }
public string? Subject { get; set; }
public Body? Body { get; set; }
public void Dispose()
{
Body?.Dispose();
GC.SuppressFinalize(this);
}
}