Files

18 lines
386 B
C#
Raw Permalink Normal View History

2026-02-21 10:30:14 -07:00
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;
}
}
}