30 lines
627 B
C#
30 lines
627 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Yitter.IdGenerator;
|
|
|
|
namespace WGShare.Domain.DTOs.Home
|
|
{
|
|
public class UserVersionLogDto
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 使用版本
|
|
///</summary>
|
|
public string Version { get; set; }
|
|
/// <summary>
|
|
/// 平台类型 1:PC 2:微信小程序
|
|
///</summary>
|
|
public int PlatformType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 房间号
|
|
///</summary>
|
|
public string RoomNum { get; set; }
|
|
}
|
|
}
|