1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ClashDotNetFramework.Models.Items
- {
- public class LogItem
- {
- public string Time { get; set; }
- public string Level { get; set; }
- public string PayLoad { get; set; }
- }
- }
|