9 lines
214 B
C#
9 lines
214 B
C#
|
namespace HermesSocketServer.Models
|
||
|
{
|
||
|
public class ChatterVoice
|
||
|
{
|
||
|
public string ChatterId { get; set; }
|
||
|
public string UserId { get; set; }
|
||
|
public string VoiceId { get; set; }
|
||
|
}
|
||
|
}
|