Zxd.Core/code/Zxd.Core.Domain/Dto/SsoStaffDto.cs

16 lines
275 B
C#

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; }
}
}