29 lines
1.1 KiB
C#
29 lines
1.1 KiB
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|