12 lines
319 B
C#
12 lines
319 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace KonSoft.Admin.Dtos;
|
|
|
|
public class WorkerDto : EntityDto<Guid>
|
|
{
|
|
public string Name { get; set; }
|
|
public string Phone { get; set; }
|
|
public List<Guid> SkillCategoryIds { get; set; } = new(); // 擅长服务类型
|
|
} |