-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolved issue with parallel delete.
- Loading branch information
Showing
4 changed files
with
510 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
namespace Benchmark | ||
{ | ||
internal class PayloadModel | ||
{ | ||
public int Id { get; set; } | ||
public int AcceptedAnswerId { get; set; } | ||
public int AnswerCount { get; set; } | ||
public string? Body { get; set; } | ||
public DateTime? ClosedDate { get; set; } | ||
public int CommentCount { get; set; } | ||
public DateTime? CommunityOwnedDate { get; set; } | ||
public DateTime? CreationDate { get; set; } | ||
public int FavoriteCount { get; set; } | ||
public DateTime? LastActivityDate { get; set; } | ||
public DateTime? LastEditDate { get; set; } | ||
public string? LastEditorDisplayName { get; set; } | ||
public int LastEditorUserId { get; set; } | ||
public int OwnerUserId { get; set; } | ||
public int ParentId { get; set; } | ||
public int PostTypeId { get; set; } | ||
public int Score { get; set; } | ||
public string? Tags { get; set; } | ||
public string? Title { get; set; } | ||
public int ViewCount { get; set; } | ||
} | ||
} |
Oops, something went wrong.