PIAPS_CW/BusinessLogic/Tools/Mail/Mail.cs

16 lines
407 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BusinessLogic.Tools.Mail
{
2024-06-22 21:15:11 +04:00
public class Mail
{
public IEnumerable<string> To { get; set; } = null!;
public string Title { get; set; } = null!;
public string Body { get; set; } = null!;
public bool IsSendable { get; set; } = true;
}
}