2023-12-16 20:25:12 +03:30
|
|
|
|
using NetinaShop.Domain.Entities.StorageFiles;
|
|
|
|
|
|
|
|
|
|
|
|
namespace NetinaShop.Domain.Entities.Brands;
|
|
|
|
|
|
|
2023-12-20 10:37:44 +03:30
|
|
|
|
public partial class BrandStorageFile : StorageFile
|
2023-12-16 20:25:12 +03:30
|
|
|
|
{
|
2023-12-20 10:37:44 +03:30
|
|
|
|
public BrandStorageFile()
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public BrandStorageFile(string name, string fileLocation, string fileName, bool isHeader, bool isPrimary, StorageFileType fileType, Guid brandId) :
|
|
|
|
|
|
base(name, fileLocation, fileName, isHeader, isPrimary, fileType)
|
|
|
|
|
|
{
|
|
|
|
|
|
BrandId = brandId;
|
|
|
|
|
|
}
|
2023-12-16 20:25:12 +03:30
|
|
|
|
public Guid BrandId { get; internal set; }
|
|
|
|
|
|
public Brand? Brand { get; internal set; }
|
|
|
|
|
|
}
|