24 lines
624 B
C#
24 lines
624 B
C#
|
using Common.Models.Enums;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Server.MyClass.Views
|
|||
|
{
|
|||
|
public class DyMediaShow
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public int LianmengId { get; set; }
|
|||
|
public string LianmengNick { get; set; }
|
|||
|
|
|||
|
public string Remark { get; set; }
|
|||
|
public string MediaName { get; set; }
|
|||
|
public DouyinMediaType MediaType { get; set; }
|
|||
|
public string AdzoneName { get; set; }
|
|||
|
public string Pid { get; set; }
|
|||
|
public int UseCnt { get; set; }
|
|||
|
}
|
|||
|
}
|