/UniqueStudio.ComContent/BLL/PostEventArgs.cs

http://uniquestudiocms.googlecode.com/ · C# · 28 lines · 23 code · 5 blank · 0 comment · 0 complexity · 9b9ca2cf956123098ef3063b126f3ea9 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using UniqueStudio.ComContent.Model;
  5. namespace UniqueStudio.ComContent.BLL
  6. {
  7. public class PostEventArgs
  8. {
  9. private PostInfo post;
  10. public PostEventArgs()
  11. {
  12. }
  13. public PostEventArgs(PostInfo post)
  14. {
  15. this.post = post;
  16. }
  17. public PostInfo Post
  18. {
  19. get { return post; }
  20. set { post = value; }
  21. }
  22. }
  23. }