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.
OnDoc/Model/AavaloqDokumentWerte.cs

47 lines
835 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
[Serializable()]
public partial class AvaloqDokumentWert
{
private string strName;
private string strValue;
public AvaloqDokumentWert(string name, string value)
{
this.name = name;
this.value = value;
}
public string name
{
get
{
return strName;
}
set
{
strName = value;
}
}
public string value
{
get
{
return strValue;
}
set
{
strValue = value;
}
}
}
}