24 lines
315 B
C#
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;
|
|
}
|
|
}
|
|
} |