예제 #1
0
파일: Thread.cs 프로젝트: dev-4-dev/c-es
 public ThreadCreated(Guid id, string subject, string body, Guid forumId, Guid authorId, int marks, ThreadStatus status, StickInfo stickInfo, DateTime createTime)
 {
     Id         = id;
     Subject    = subject;
     Body       = body;
     ForumId    = forumId;
     AuthorId   = authorId;
     Marks      = marks;
     Status     = status;
     StickInfo  = stickInfo;
     CreateTime = createTime;
 }
예제 #2
0
파일: Thread.cs 프로젝트: dev-4-dev/c-es
 public ThreadStickInfoChanged(Guid id, StickInfo stickInfo)
 {
     Id        = id;
     StickInfo = stickInfo;
 }