2019-09-10 18:42:48 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Toolbox.Library
|
|
|
|
|
{
|
2020-02-12 17:50:10 -05:00
|
|
|
|
public interface IArchiveEditor
|
2019-09-10 18:42:48 -04:00
|
|
|
|
{
|
2020-02-12 17:50:10 -05:00
|
|
|
|
EventHandler UpdateArchiveFile { get; set; }
|
2019-09-10 18:42:48 -04:00
|
|
|
|
}
|
|
|
|
|
}
|