Add project files.
This commit is contained in:
18
paperless-ngx-export/Models/Correspondent.cs
Normal file
18
paperless-ngx-export/Models/Correspondent.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace paperless_ngx_export.Models
|
||||
{
|
||||
public class Correspondent : ResultBase
|
||||
{
|
||||
public string slug { get; set; }
|
||||
public string name { get; set; }
|
||||
public int document_count { get; set; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return name;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user