PageRenderTime 24ms CodeModel.GetById 0ms RepoModel.GetById 1ms app.codeStats 0ms

/ThinkEmailFomatter/Models/DataObjects/DomainObjects/Template.cs

https://bitbucket.org/nicdao/frg-think-emailformatter
C# | 15 lines | 14 code | 1 blank | 0 comment | 0 complexity | efd34a823cbf1b74ab146e0ba3122d23 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. namespace ThinkEmailFormatter.Models
  7. {
  8. public class Template
  9. {
  10. public virtual bool Selected { get; set; }
  11. public virtual string Name { get; set; }
  12. public virtual string Description { get; set; }
  13. }
  14. }