using System; using System.Collections.Generic; using System.Text; namespace HotelPms.Share.IO { public class LogInfo { private string m_Message = string.Empty; public string Message { get { return m_Message; } set { m_Message = value; } } private OperationLog.LogLevelType m_Level = OperationLog.LogLevelType.Normal; public OperationLog.LogLevelType Level { get { return m_Level; } set { m_Level = value; } } public LogInfo(string msg, OperationLog.LogLevelType level) { m_Message = msg; m_Level = level; } } }