﻿namespace Oni.Dae
{
    internal class Image : Entity
    {
        public Image()
        {
        }

        public Image(string filePath)
        {
            FilePath = filePath;
        }

        public string FilePath { get; set; }
    }
}
