20 lines
582 B
C#
20 lines
582 B
C#
using Netina.Domain.Entities.StorageFiles;
|
|
using Netina.Domain.Enums;
|
|
|
|
namespace Netina.Domain.Entities.Brands;
|
|
|
|
public partial class BrandStorageFile : StorageFile
|
|
{
|
|
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;
|
|
}
|
|
public Guid BrandId { get; internal set; }
|
|
public Brand? Brand { get; internal set; }
|
|
} |