18 lines
265 B
C#
18 lines
265 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Html5Uploader
|
|
{
|
|
public enum SlicedSet
|
|
{
|
|
Auto = 0
|
|
,
|
|
Enabled=1
|
|
,
|
|
Disabled =2
|
|
}
|
|
}
|