8 lines
249 B
C#
8 lines
249 B
C#
|
|
namespace NetinaShop.Domain.Dtos.RequestDtos.SeedDtos;
|
|||
|
|
|
|||
|
|
public class SeedBrandRequestDto
|
|||
|
|
{
|
|||
|
|
public int BaseBrandId { get; set; }
|
|||
|
|
public string Name { get; set; } = string.Empty;
|
|||
|
|
public string Description { get; set; } = string.Empty;
|
|||
|
|
}
|