18 lines
447 B
C#
18 lines
447 B
C#
namespace CRM.Core.DTO.Res
|
|
{
|
|
public class ActivityDto
|
|
{
|
|
public string tag { get; set; }
|
|
public string tagname { get; set; }
|
|
public int? ch { get; set; }
|
|
public int? deptid { get; set; }
|
|
}
|
|
|
|
public class RelationDto
|
|
{
|
|
public string ResId { get; set; }
|
|
public int DeptId { get; set; }
|
|
public string DeptName { get; set; }
|
|
public int? GROUPID { get; set; }
|
|
}
|
|
} |