-
Notifications
You must be signed in to change notification settings - Fork 1
/
Highlight.cs
37 lines (26 loc) · 887 Bytes
/
Highlight.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BlazorEpub
{
public class Highlight
{
public int Id { get; set; }
[Display(Name = "رنگ هایلایت")]
public string HighlightColor { get; set; }
[Display(Name = "متن هایلایت")]
public string HighlightText { get; set; }
[Display(Name = "یادداشت")]
public string Note { get; set; }
[Display(Name = "آدرس صفحه")]
public string HrefBook { get; set; }
[Display(Name = "آدرس هایلایت")]
public string CfiRange { get; set; }
[Display(Name = "شماره صفحه")]
public int PageNumber { get; set; }
public bool IsAnnotation { get; set; }
}
}