Files
2026-04-18 22:31:51 +02:00

24 lines
315 B
C#

using Intromat.ViewModels;
namespace Intromat.Interfaces
{
public interface IFile
{
bool IsDirty
{
get;
set;
}
string FullPath
{
get;
}
string Name
{
get;
set;
}
}
}