mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-07-15 17:06:01 +08:00
7 lines
209 B
C#
7 lines
209 B
C#
namespace Orchard.Email.Models {
|
|
public class EmailMessage {
|
|
public string Subject { get; set; }
|
|
public string Body { get; set; }
|
|
public string[] Recipients { get; set; }
|
|
}
|
|
} |