-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPdfMetadata.cs
More file actions
50 lines (42 loc) · 1.05 KB
/
Copy pathPdfMetadata.cs
File metadata and controls
50 lines (42 loc) · 1.05 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
using System;
namespace SmartPdfKit.Models
{
/// <summary>
/// Represents the document metadata of a PDF.
/// </summary>
public class PdfMetadata
{
/// <summary>
/// Gets or sets the document title.
/// </summary>
public string? Title { get; set; }
/// <summary>
/// Gets or sets the document author.
/// </summary>
public string? Author { get; set; }
/// <summary>
/// Gets or sets the document subject.
/// </summary>
public string? Subject { get; set; }
/// <summary>
/// Gets or sets the keywords.
/// </summary>
public string? Keywords { get; set; }
/// <summary>
/// Gets or sets the creator application.
/// </summary>
public string? Creator { get; set; }
/// <summary>
/// Gets or sets the PDF producer.
/// </summary>
public string? Producer { get; set; }
/// <summary>
/// Gets or sets the creation date.
/// </summary>
public DateTime? CreationDate { get; set; }
/// <summary>
/// Gets or sets the modification date.
/// </summary>
public DateTime? ModificationDate { get; set; }
}
}