﻿export class I18nArgs {

    constructor(key: string) {
        this.key = key;
    }

    key: string;
    value: string;
}
