11 lines
244 B
TypeScript
11 lines
244 B
TypeScript
|
import { IMagazineTemplateAmmoItem } from "../profile/IAkiProfile"
|
||
|
|
||
|
export interface ISetMagazineRequest
|
||
|
{
|
||
|
Id: string
|
||
|
Name: string
|
||
|
Caliber: string
|
||
|
items: IMagazineTemplateAmmoItem[]
|
||
|
TopCount: number
|
||
|
BottomCount: number
|
||
|
}
|