mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-21 16:12:01 +00:00
11 lines
185 B
C#
11 lines
185 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Splitter_UI.Services;
|
|
|
|
public interface IFileJobFactory
|
|
{
|
|
FileJobViewModel Create(SingleJob job);
|
|
}
|