9 lines
303 B
C#
9 lines
303 B
C#
namespace Zentral.API.Apps.Communications.Dtos;
|
|
|
|
public class TestEmailDto
|
|
{
|
|
public string To { get; set; } = string.Empty;
|
|
public string Subject { get; set; } = "Test Email from Zentral";
|
|
public string Body { get; set; } = "This is a test email sent from Zentral Communications Module.";
|
|
}
|