You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
604 B
27 lines
604 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BBWY.Client.Models.PackTask
|
|
{
|
|
public class PackUser
|
|
{
|
|
/// <summary>
|
|
/// 用户Id
|
|
/// </summary>
|
|
public string Id { get; set; }
|
|
/// <summary>
|
|
/// 用户名
|
|
/// </summary>
|
|
public string UserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 团队Id
|
|
/// </summary>
|
|
public string DepartmentId { get; set; }
|
|
/// <summary>
|
|
/// 用户名(花名)
|
|
/// </summary>
|
|
public string UserNick { get; set; }
|
|
}
|
|
}
|
|
|