mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-01-28 15:51:07 -05:00
13 lines
220 B
C#
13 lines
220 B
C#
using System;
|
|
using AudibleApiDTOs;
|
|
|
|
namespace InternalUtilities
|
|
{
|
|
public class ImportItem
|
|
{
|
|
public Item DtoItem { get; set; }
|
|
public string AccountId { get; set; }
|
|
public string LocaleName { get; set; }
|
|
}
|
|
}
|