yz_server/Server/MyClass/Views/DyMediaShow.cs

24 lines
624 B
C#
Raw Normal View History

2022-04-16 07:48:12 +00:00
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; }
}
}