Account to be included on each import item, not just on the aggr group
This commit is contained in:
parent
56732a5365
commit
755a7338e9
15 changed files with 150 additions and 71 deletions
18
InternalUtilities/ImportItem.cs
Normal file
18
InternalUtilities/ImportItem.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue