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