-
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.
- Loading branch information
Showing
13 changed files
with
719 additions
and
586 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
using System.Diagnostics.CodeAnalysis; | ||
|
||
namespace KindleMate2.Entities { | ||
[SuppressMessage("ReSharper", "InconsistentNaming")] | ||
public class Clipping { | ||
public string key { get; set; } | ||
public string content { get; set; } | ||
public string bookname { get; set; } | ||
public string authorname { get; set; } | ||
public int briefType { get; set; } | ||
public string clippingtypelocation { get; set; } | ||
public string clippingdate { get; set; } | ||
public int read { get; set; } | ||
public string clipping_importdate { get; set; } | ||
public string tag { get; set; } | ||
public int sync { get; set; } | ||
public string newbookname { get; set; } | ||
public int colorRGB { get; set; } | ||
public int pagenumber { get; set; } | ||
|
||
public Clipping(string key, string content, string bookName, string authorName, int briefType, string clippingTypeLocation, string clippingDate, int read, string clippingImportDate, string tag, int sync, string newBookName, int colorRGB, int pageNumber) { | ||
this.key = key; | ||
this.content = content; | ||
bookname = bookName; | ||
authorname = authorName; | ||
this.briefType = briefType; | ||
clippingtypelocation = clippingTypeLocation; | ||
clippingdate = clippingDate; | ||
this.read = read; | ||
clipping_importdate = clippingImportDate; | ||
this.tag = tag; | ||
this.sync = sync; | ||
newbookname = newBookName; | ||
this.colorRGB = colorRGB; | ||
pagenumber = pageNumber; | ||
} | ||
|
||
public Clipping() { | ||
key = string.Empty; | ||
content = string.Empty; | ||
bookname = string.Empty; | ||
authorname = string.Empty; | ||
briefType = 0; | ||
clippingtypelocation = string.Empty; | ||
clippingdate = string.Empty; | ||
read = 0; | ||
clipping_importdate = string.Empty; | ||
tag = string.Empty; | ||
sync = 0; | ||
newbookname = string.Empty; | ||
colorRGB = -1; | ||
pagenumber = 0; | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.