* include new external login interfaces in ApiExtended

* new ext method to simplify api access in file liberator
This commit is contained in:
Robert McRackan 2021-09-17 16:09:49 -04:00
parent 51020ef99e
commit 926a7a1148
8 changed files with 66 additions and 32 deletions

View file

@ -0,0 +1,12 @@
using System;
using AudibleApi.Common;
namespace DtoImporterService
{
public class ImportItem
{
public Item DtoItem { get; set; }
public string AccountId { get; set; }
public string LocaleName { get; set; }
}
}