mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
14 lines
244 B
C#
14 lines
244 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace RainmeterEditor.Model
|
|
{
|
|
public interface IDocument
|
|
{
|
|
string Name { get; }
|
|
string FilePath { get; }
|
|
}
|
|
}
|