Files
KonSoft.Clean/modules/admin/src/KonSoft.Admin.Application.Contracts/Dtos/WorkerDto.cs
2025-10-16 10:30:51 +08:00

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(); // 擅长服务类型
}