Class SendEmailTextRequest
- Namespace
- KadicErp.WebApi.Controllers.Notifications
- Assembly
- KadicErp.WebApi.dll
public sealed record SendEmailTextRequest
- Inheritance
-
object
SendEmailTextRequest
Constructors
SendEmailTextRequest(string, string, string, string?, Guid?)
public SendEmailTextRequest(string To, string Subject, string Body, string? ModuleCode = null, Guid? ChannelId = null)
Parameters
To string
Subject string
Body string
ModuleCode string
ChannelId Guid?
Properties
Body
public string Body { get; init; }
Property Value
- string
ChannelId
public Guid? ChannelId { get; init; }
Property Value
- Guid?
ModuleCode
public string? ModuleCode { get; init; }
Property Value
- string
Subject
public string Subject { get; init; }
Property Value
- string
To
public string To { get; init; }
Property Value
- string