forked from sanchezvem/pyrofetes-backend
7 lines
150 B
C#
7 lines
150 B
C#
namespace PyroFetes.DTO.WareHouse.Response;
|
|
|
|
public class GetWareHouseDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Name { get; set; }
|
|
} |