Example #1
0
 public CodeLineModel(DiffLineKind kind, CodeLine codeLine, CommentThreadModel commentThread, CodeDiagnostic[] diagnostics)
 {
     CodeLine      = codeLine;
     CommentThread = commentThread;
     Diagnostics   = diagnostics;
     Kind          = kind;
 }
Example #2
0
 public CodeLineModel(DiffLineKind kind, CodeLine codeLine, CommentThreadModel commentThread, CodeDiagnostic[] diagnostics, int lineNumber)
 {
     CodeLine      = codeLine;
     CommentThread = commentThread;
     Diagnostics   = diagnostics;
     Kind          = kind;
     LineNumber    = lineNumber;
 }