Account to be included on each import item, not just on the aggr group

This commit is contained in:
Robert McRackan 2020-08-26 10:25:24 -04:00
parent 56732a5365
commit 755a7338e9
15 changed files with 150 additions and 71 deletions

View file

@ -0,0 +1,18 @@
using System;
using AudibleApiDTOs;
namespace InternalUtilities
{
public class ImportItem
{
public Item DtoItem { get; set; }
public Account Account { get; set; }
public ImportItem() { }
public ImportItem(Item dtoItem, Account account)
{
DtoItem = dtoItem;
Account = account;
}
}
}