﻿namespace JLGames.RocketDriver.Actions.i18n
{
    internal class RegisterFileLoadingInfo
    {
        private readonly string m_FileKey;
        private readonly string m_FileBundle;
        private readonly string m_FilePath;

        public string FileKey => m_FileKey;
        public string FileBundle => m_FileBundle;
        public string FilePath => m_FilePath;

        public RegisterFileLoadingInfo(string fileKey, string fileBundle, string filePath)
        {
            m_FileKey = fileKey;
            m_FileBundle = fileBundle;
            m_FilePath = filePath;
        }
    }
}