13 lines
367 B
C#
13 lines
367 B
C#
namespace Application.Domain.Entity;
|
|
|
|
public class game_broadcast
|
|
{
|
|
public string Id { get; set; }
|
|
public int area { get; set; }
|
|
public string code { get; set; }
|
|
public string userId { get; set; }
|
|
public string userNo { get; set; }
|
|
public string nick { get; set; }
|
|
public string msg { get; set; }
|
|
public long endTime { get; set; }
|
|
} |