Api/Brizco.Domain/Dtos/ResponseDto/StaffResponseSDto.cs

8 lines
232 B
C#
Raw Normal View History

2024-07-31 10:18:38 +03:30
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;
}