2025-04-24 18:31:27 +08:00

37 lines
978 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Request.WebSocket
{
public class MessgeRequst
{
/// <summary>
/// 聊天对象ID
/// </summary>
public Guid? Id { get; set; }
/// <summary>
/// 消息完整日期时间,空则为首次请求返回最新的50条记录
/// </summary>
public DateTime? MsgTime { get; set; }
/// <summary>
/// 消息位置类型 0=ping心跳 1 = 首页消息; 2=详情消息
/// </summary>
public int? PositionType { get; set; }
/// <summary>
/// 消息内容 0=退出详情页 1=首次进入详情页 2=历史消息翻页
/// </summary>
public string Message { get; set; }
/// <summary>
/// 店铺ID
/// </summary>
public Guid? ShopId { get; set; }
}
}