18 lines
378 B
C#
18 lines
378 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Text;
|
||
|
||
namespace JianGongYun.TRTC.Models
|
||
{
|
||
public class ChatEntity
|
||
{
|
||
public string Body { get; set; }
|
||
public string Nick { get; set; }
|
||
public string Date { get; set; }
|
||
public string FullBody
|
||
{
|
||
get { return $"{Date} {Nick}:{Body}"; }
|
||
}
|
||
}
|
||
}
|