/UniqueStudio.ComContent/BLL/PostEventArgs.cs
C# | 28 lines | 23 code | 5 blank | 0 comment | 0 complexity | 9b9ca2cf956123098ef3063b126f3ea9 MD5 | raw file
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- using UniqueStudio.ComContent.Model;
-
- namespace UniqueStudio.ComContent.BLL
- {
- public class PostEventArgs
- {
- private PostInfo post;
-
- public PostEventArgs()
- {
- }
-
- public PostEventArgs(PostInfo post)
- {
- this.post = post;
- }
-
- public PostInfo Post
- {
- get { return post; }
- set { post = value; }
- }
- }
- }