8 lines
232 B
C#
8 lines
232 B
C#
|
|
namespace Brizco.Domain.Dtos.ResponseDto;
|
|||
|
|
|
|||
|
|
public class StaffResponseSDto
|
|||
|
|
{
|
|||
|
|
public Guid Id { get; set; }
|
|||
|
|
public string FirstName { get; set; } = string.Empty;
|
|||
|
|
public string LastName { get; set; } = string.Empty;
|
|||
|
|
}
|