using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LifePayment.Domain.Shared
{
public class LogFrontInput
{
///
/// 用户Id
///
public string UserId { get; set; }
///
/// 消息
///
public string Message { get; set; }
///
/// 地址
///
public string Url { get; set; }
///
/// 请求时间
///
public DateTime? RequestTime { get; set; }
}
}