using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Zxd.Core.Domain.Dto { public class SsoStaffDto { public int Eid { get; set; } public string? Name { get; set; } } }