sunpengfei
2025-06-11 f7cef784a69d533ba9cd00b36d3c25fb86994f11
fix:修改文件夹名称
1个文件已添加
28 ■■■■■ 已修改文件
LifePayment/LifePayment.Domain.Shared/LogRecord/LogFrontInput.cs 28 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
LifePayment/LifePayment.Domain.Shared/LogRecord/LogFrontInput.cs
New file
@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LifePayment.Domain.Shared
{
    public class LogFrontInput
    {
        /// <summary>
        /// 用户Id
        /// </summary>
        public string UserId { get; set; }
        /// <summary>
        /// 消息
        /// </summary>
        public string Message { get; set; }
        /// <summary>
        /// 地址
        /// </summary>
        public string Url { get; set; }
        /// <summary>
        /// 请求时间
        /// </summary>
        public DateTime? RequestTime { get; set; }
    }
}