using System.IO;
namespace MediaBrowser.Model.IO
{
    /// 
    /// Class IODefaults.
    /// 
    public static class IODefaults
    {
        /// 
        /// The default copy to buffer size.
        /// 
        public const int CopyToBufferSize = 81920;
        /// 
        /// The default file stream buffer size.
        /// 
        public const int FileStreamBufferSize = 4096;
        /// 
        /// The default  buffer size.
        /// 
        public const int StreamWriterBufferSize = 1024;
    }
}