Entwicklung_BLAZOR/InterneDLLs/LambertzPortalODAL/TerminKommentar.cs
2025-08-23 19:30:21 +02:00

18 lines
459 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace De.Lambertz.ODAL
{
public class TerminKommentar
{
private DateTime termin = DateTime.MinValue;
private String kommentar = "";
public DateTime Termin { get => termin; set => termin = value; }
public string Kommentar { get => kommentar; set => kommentar = value; }
}
}