You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
610 B

2 years ago
  1. using System;
  2. namespace WebApp.Outlook.Models
  3. {
  4. public class Messages
  5. {
  6. public string Subject { get; set; }
  7. public DateTimeOffset DateTimeReceived { get; set; }
  8. public string From { get; set; }
  9. public Messages(string subject, DateTimeOffset? dateTimeReceived,
  10. Microsoft.Office365.OutlookServices.Recipient from)
  11. {
  12. this.Subject = subject;
  13. this.DateTimeReceived = (DateTimeOffset)dateTimeReceived;
  14. this.From = from != null ? $"{from.EmailAddress.Name} ({from.EmailAddress.Address})" : "EMPTY";
  15. }
  16. }
  17. }