forked from sanchezvem/PyroFetes
8 lines
138 B
C#
8 lines
138 B
C#
namespace API.DTO.Brand.Response;
|
|
|
|
public class GetBrandDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Name { get; set; }
|
|
|
|
} |