Api/NetinaShop.Domain/Entities/Brands/BrandStorageFile.cs

9 lines
238 B
C#
Raw Normal View History

2023-12-16 20:25:12 +03:30
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; }
}