using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Data.Entity; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace MailSender.Models { [Table("Mail")] public class MailModel { [Key] public int Id { get; set; } //[ForeignKey] //public int UserId //id usera ktory wyslal maila [Display(Name = "Temat")] [Required(AllowEmptyStrings = false)] public string Subject { get; set; } [DataType(DataType.EmailAddress)] [Required(AllowEmptyStrings = false, ErrorMessage = "You need to type in an e-mail")] [RegularExpression(".*@.*\\..*", ErrorMessage = "You typed in e-mail in wrong format")] [Display(Name = "Adres odbiorcy")] public string EMailTo { get; set; } [Display(Name ="Odpowiedź")] [Required(AllowEmptyStrings = false, ErrorMessage = "You need to type in a message to send")] [DataType(DataType.MultilineText)] [StringLength(500, ErrorMessage = "Message has to have between 1 and 500 chars", MinimumLength = 1)] public string Content { get; set; } } }