123456789101112131415161718192021 |
- using Shaker.Models;
- using ShakerApp.ViewModels;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ShakerApp.Models
- {
- public class LogItemModel:BaseModel
- {
- public DateTime DateTime = DateTime.MinValue;
- public string Message = string.Empty;
- public LogType LogType = LogType.Info;
- public override object Clone()
- {
- return this.CloneBase();
- }
- }
- }
|