Advertisement
Guest User

Untitled

a guest
Jul 31st, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public abstract class Setting
  2. {
  3. [Required]
  4. public int SettingId { get; set; }
  5.  
  6. public string Name { get; set; }
  7.  
  8. [Required]
  9. [MaxLength(255)]
  10. public string Value { get; set; }
  11. public string ModifiedBy { get; set; }
  12. public DateTime ModifiedDt { get; set; }
  13. }
  14.  
  15. public class ViewSetting : Setting
  16. {
  17. }
  18.  
  19. public class EditSetting : Setting
  20. {
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement