Files
OnDoc/Model/AavaloqDokumentWerte.cs
2024-07-18 14:22:38 +02:00

47 lines
835 B
C#

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;
}
}
}
}