Add project files.

This commit is contained in:
2026-02-21 10:30:14 -07:00
parent 398161da53
commit f662d576d1
28 changed files with 1127 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace paperless_ngx_export.Models
{
public class Document : ResultBase
{
public int? correspondent { get; set; }
public int? document_type { get; set; }
public int? storage_path { get; set; }
public string title { get; set; }
public string content { get; set; }
public int[] tags { get; set; }
public DateTime created { get; set; }
public DateTime created_date { get; set; }
public DateTimeOffset modified { get; set; }
public DateTimeOffset added { get; set; }
public DateTimeOffset? deleted_at { get; set; }
public string? archive_serial_number { get; set; }
public string original_file_name { get; set; }
public string archived_file_name { get; set; }
public int owner { get; set; }
public string[] notes { get; set; }
public CustomFieldKeyValuePair[] custom_fields { get; set; }
public int? page_count { get; set; }
public string mime_type { get; set; }
}
}