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.
31 lines
779 B
31 lines
779 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GDZZ.Application.Service.LiveHistoryContacts.Dto
|
|
{
|
|
public class LiveMessageInput
|
|
{
|
|
|
|
public string id { get; set; }
|
|
public string status { get; set; }
|
|
public string type { get; set; }
|
|
public long sendTime { get; set; }
|
|
public string content { get; set; }
|
|
public long toContactId { get; set; }
|
|
|
|
public string FileName { get; set; }
|
|
public Fromuser fromUser { get; set; }
|
|
|
|
}
|
|
|
|
public class Fromuser
|
|
{
|
|
public long id { get; set; }
|
|
public string displayName { get; set; }
|
|
public string avatar { get; set; }
|
|
}
|
|
}
|