24 lines
513 B
C#
24 lines
513 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using YBDevice.Entity;
|
|
|
|
namespace YBDevice.NApi.Application
|
|
{
|
|
/// <summary>
|
|
/// 添加用户使用过的设备类型
|
|
/// </summary>
|
|
public class RegUserDevTypeS2SDto
|
|
{
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
public int UserId { get; set; }
|
|
/// <summary>
|
|
/// 设备类型
|
|
/// </summary>
|
|
public int DevType { get; set; }
|
|
}
|
|
}
|