PageRenderTime 563ms CodeModel.GetById 71ms RepoModel.GetById 40ms app.codeStats 0ms

/ThinkEmailFomatter/Models/BusinessObjects/TemplateContext.cs

https://bitbucket.org/nicdao/frg-think-emailformatter
C# | 17 lines | 15 code | 2 blank | 0 comment | 0 complexity | 13788099cd4b2d9dfff593d350207936 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.Configuration;
  7. using System.Net.Mail;
  8. namespace ThinkEmailFormatter.Models
  9. {
  10. public class TemplateContext
  11. {
  12. public IEnumerable<Template> Templates { get; set; }
  13. public EmailContext EmailContext { get; set; }
  14. }
  15. }