mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-01-02 19:08:39 -05:00
16 lines
322 B
C#
16 lines
322 B
C#
using System;
|
|
using System.IO;
|
|
using FileManager;
|
|
|
|
namespace AaxDecrypter
|
|
{
|
|
public class MultiConvertFileProperties
|
|
{
|
|
public string OutputFileName { get; set; }
|
|
public int PartsPosition { get; set; }
|
|
public int PartsTotal { get; set; }
|
|
public string Title { get; set; }
|
|
|
|
}
|
|
}
|