19 lines
433 B
C#
19 lines
433 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Framework.Common.Models
|
|
{
|
|
/// <summary>
|
|
/// 写入分布式日志需要的字段
|
|
/// </summary>
|
|
public class LogModel
|
|
{
|
|
public string OriginalClassName { get; set; }
|
|
public string OriginalMethodName { get; set; }
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|