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

9 lines
159 B
C#

namespace LiteCharms.Features.Email.Models;
public class Attachment
{
public string? Name { get; set; }
public Stream? FileStream { get; set; }
}