using NetinaShop.Domain.Entities.StorageFiles;
namespace NetinaShop.Domain.Entities.Brands;
public class BrandStorageFile : StorageFile
{
public Guid BrandId { get; internal set; }
public Brand? Brand { get; internal set; }
}