mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
15 lines
419 B
C#
15 lines
419 B
C#
|
using System.Windows.Media;
|
|||
|
|
|||
|
namespace RainmeterEditor.Model
|
|||
|
{
|
|||
|
public class DocumentFormat
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public ImageSource Icon { get; set; }
|
|||
|
public string Description { get; set; }
|
|||
|
public string DefaultExtension { get; set; }
|
|||
|
public IDocumentEditorFactory Factory { get; set; }
|
|||
|
public string Category { get; set; }
|
|||
|
}
|
|||
|
}
|