using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cowain.Bake.Main.Models
{
public class LogModel : BindableBase
{
private DateTime logTime;
///
/// 日志时间
///
public DateTime LogTime
{
get => logTime;
set => SetProperty(ref logTime, value);
}
private string logText;
///
/// 日志内容
///
public string LogText
{
get => logText;
set => SetProperty(ref logText, value);
}
private string logLevel;
///
/// 日志等级
///
public string LogLevel
{
get => logLevel;
set => SetProperty(ref logLevel, value);
}
private string fontColor;
///
/// 日志等级字体颜色
///
public string FontColor
{
get => fontColor;
set => SetProperty(ref fontColor, value);
}
}
}