Files
Yi.Admin/Yi.Abp.Net8/module/chat-hub/Yi.Framework.ChatHub.Application.Contracts/Dtos/PersonalMessageInputDto.cs

22 lines
457 B
C#
Raw Normal View History

2024-04-04 19:28:18 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.ChatHub.Application.Contracts.Dtos
{
2024-04-06 18:28:32 +08:00
public class PersonalMessageInputDto
2024-04-04 19:28:18 +08:00
{
/// <summary>
/// 用户id
/// </summary>
public Guid UserId { get; set; }
/// <summary>
2024-04-06 18:28:32 +08:00
/// 消息内容
2024-04-04 19:28:18 +08:00
/// </summary>
2024-04-06 18:28:32 +08:00
public string Content { get; set; }
2024-04-04 19:28:18 +08:00
}
}