|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity.Dncmsbase
|
|
{
|
|
[Table("t_live_platform")]
|
|
public class LivePlatform
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? Platform { get; set; }
|
|
}
|
|
}
|