﻿namespace Oni
{
    internal struct ImporterTask
    {
        private readonly string filePath;
        private readonly TemplateTag type;

        public ImporterTask(string filePath)
            : this(filePath, TemplateTag.NONE)
        {
        }

        public ImporterTask(string filePath, TemplateTag type)
        {
            this.filePath = filePath;
            this.type = type;
        }

        public string FilePath => filePath;
        public TemplateTag Type => type;
    }
}
