2023-06-16 16:00:37 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2023-06-21 14:41:49 +02:00
|
|
|
|
namespace Dakota.Models
|
2023-06-16 16:00:37 +02:00
|
|
|
|
{
|
2023-06-23 12:06:48 +02:00
|
|
|
|
public abstract class Dateneinheit
|
2023-06-16 16:00:37 +02:00
|
|
|
|
{
|
|
|
|
|
|
public abstract string GetValue();
|
2023-06-22 13:02:31 +02:00
|
|
|
|
|
2023-08-21 14:45:00 +02:00
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
|
2023-06-22 13:02:31 +02:00
|
|
|
|
public bool HasValue()
|
|
|
|
|
|
{
|
|
|
|
|
|
return GetValue() is string;
|
|
|
|
|
|
}
|
2023-06-16 16:00:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|