HobbyProject/Source Code/TeamHobby.HobbyProjectGenerator.Archive/Contracts/IRelationArchivable.cs
Lunastra 1828f5acbb Added a main to test stuffs
Change return type for Datasource interface.
Add file compression method.
2021-12-04 18:23:15 -08:00

14 lines
273 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TeamHobby.HobbyProjectGenerator.Archive
{
public interface IRelationArchivable
{
bool CreateArchived(string fileName);
}
}