12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EPD.Data
- {
- public class LogItem
- {
- public string Time { get; set; }
- public string Sender { get; set; }
- public string Type { get; set; }
- public string Message { get; set; }
- public LogItem(string time, string sender, string type, string message)
- {
- Time = time;
- Sender = sender;
- Type = type;
- Message = message;
- }
- }
- }
|