BotSharp/src/Plugins/BotSharp.Plugin.EmailHandler/Models/EmailModel.cs
2024-07-31 15:46:14 -05:00

20 lines
468 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BotSharp.Plugin.EmailHandler.Models
{
public class EmailModel
{
public DateTime CreateDate { get; set; }
public string Subject { get; set; }
public string UId { get; set; }
public string From { get; set; }
public string Body { get; set; }
public string TextBody { get; set; }
}
}