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