DS_Stream.cs

23 lines | 430 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using System.IO;

namespace RW_Tool.DataSource.FileOrStream
{
    public class DS_Stream : DS_FileOrStream
    {
        public override string Type => "Stream";

        public Stream Stream { set; get; }

        public DS_Stream() { }
        public DS_Stream(Stream stream)
        {
            this.Stream = stream;
        }
    }
}