38 lines
722 B
C#
38 lines
722 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Dakota
|
|
{
|
|
internal class Datenelement : Dateneinheit
|
|
{
|
|
public string Value { get; set; }
|
|
public int MinStellen { get; set; }
|
|
public int MaxStellen { get; set; }
|
|
|
|
public Datenelement()
|
|
{
|
|
|
|
}
|
|
|
|
public Datenelement(int min, int max)
|
|
{
|
|
MinStellen = min;
|
|
MaxStellen = max;
|
|
}
|
|
|
|
public Datenelement(int count)
|
|
{
|
|
MinStellen = count;
|
|
MaxStellen = count;
|
|
}
|
|
|
|
public override string GetValue()
|
|
{
|
|
return Value;
|
|
}
|
|
}
|
|
}
|