Files
BeWoPlaner/Dakota/Models/Dateneinheit.cs

21 lines
378 B
C#
Raw Normal View History

2023-06-16 16:00:37 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Dakota.Models
2023-06-16 16:00:37 +02:00
{
public abstract class Dateneinheit
2023-06-16 16:00:37 +02:00
{
public abstract string GetValue();
public string Title { get; set; }
public bool HasValue()
{
return GetValue() is string;
}
2023-06-16 16:00:37 +02:00
}
}