You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
464 B
25 lines
464 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 语言聊天消息类
|
||
|
/// </summary>
|
||
|
public class ChatAudioMessage : ChatMessage
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 语音文件名称
|
||
|
/// </summary>
|
||
|
public string FileName;
|
||
|
/// <summary>
|
||
|
/// 是否播放过
|
||
|
/// </summary>
|
||
|
public bool IsPlayed;
|
||
|
/// <summary>
|
||
|
/// 播放时长
|
||
|
/// </summary>
|
||
|
public long TimeSpanSeconds;
|
||
|
}
|