This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/software/1_sem/se-12-log-entry/se-12-log-entry/LogEntry.cs

17 lines
293 B
C#

using System;
namespace se_12_log_entry
{
public class LogEntry
{
public int ID { get; set; }
public DateTime Date { get; set; }
public LogEntry(int _id, DateTime _date)
{
this.ID = _id;
this.Date = _date;
}
}
}