You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.7 KiB
59 lines
1.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Versioning;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class OnBaseDocUpload
|
|
{
|
|
public class OnBaseDokument
|
|
{
|
|
public string dokumentTyp { get; set; }
|
|
public string dokumentDatum { get; set; }
|
|
public string dateiTyp { get; set; }
|
|
public string bpNummer { get; set; }
|
|
public string personNummer { get; set; }
|
|
public string dokumentDatei { get; set; }
|
|
public List<attribute> attributes { get; set; }
|
|
}
|
|
|
|
public class attribute
|
|
{
|
|
public string fieldname { get; set; }
|
|
public string fieldvalue { get; set; }
|
|
|
|
public attribute (string fname, string fvalue)
|
|
{
|
|
fieldname = fname;
|
|
fieldvalue = fvalue;
|
|
}
|
|
}
|
|
|
|
public class OnBaseDokumentFileUpload
|
|
{
|
|
public string dokumentTyp { get; set; }
|
|
public string dokumentDatum { get; set; }
|
|
public string dateiTyp { get; set; }
|
|
public string bpNummer { get; set; }
|
|
public string personNummer { get; set; }
|
|
|
|
public List<attribute> attributes { get; set; }
|
|
}
|
|
|
|
public class OnBaseDokument_Revision
|
|
{
|
|
public string dokumentHandle { get; set; }
|
|
public string dateiTyp { get; set; }
|
|
public string dokumentDatei { get; set; }
|
|
public string dokumentTyp { get; set; }
|
|
public string comment { get; set; }
|
|
|
|
public List<attribute> attributes { get; set; }
|
|
}
|
|
}
|
|
|
|
}
|