* Image added * ImageMaximumBytes * FileController remove Authorized * ApplicationCore.Constants.AuthorizationConstants.AUTH_KEY * SavePicture in the interface. * IFileSystem in Core * WebFileSystem in Infrastructure * PictureUri removed from UpdateCatalogItemRequest * Modal scroll fix
16 lines
509 B
C#
16 lines
509 B
C#
namespace Microsoft.eShopWeb.PublicApi.CatalogItemEndpoints
|
|
{
|
|
public class CreateCatalogItemRequest : BaseRequest
|
|
{
|
|
public int CatalogBrandId { get; set; }
|
|
public int CatalogTypeId { get; set; }
|
|
public string Description { get; set; }
|
|
public string Name { get; set; }
|
|
public string PictureUri { get; set; }
|
|
public string PictureBase64 { get; set; }
|
|
public string PictureName { get; set; }
|
|
public decimal Price { get; set; }
|
|
}
|
|
|
|
}
|