Projekt

Obecné

Profil

Stáhnout (497 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using Models.Enums;
2
using System;
3
using System.Collections.Generic;
4
using System.Linq;
5
using System.Text;
6
using System.Threading.Tasks;
7

    
8
namespace Models.Documents;
9

    
10
/**
11
 * If the file is plaintext, we except it to be a single document
12
 * If the file is base64, we expect it to be a ZIP file with plaintext documents in its root
13
 */
14
public class DocumentAddInfo
15
{
16
    public string Name { get; set; }
17
    public EAddDocumentFormat Format { get; set; }
18
    public string Content { get; set; }
19
}
(1-1/5)