[longomatch/redesign2: 89/140] Modify ITemplate interface



commit ec818efff0cadb9bd25c06b8099b1a146f1d11ae
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Sun Mar 27 14:37:30 2011 +0200

    Modify ITemplate interface

 LongoMatch/Interfaces/ITemplates.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/LongoMatch/Interfaces/ITemplates.cs b/LongoMatch/Interfaces/ITemplates.cs
index cffdb34..80f8e0c 100644
--- a/LongoMatch/Interfaces/ITemplates.cs
+++ b/LongoMatch/Interfaces/ITemplates.cs
@@ -23,13 +23,13 @@ namespace LongoMatch.Interfaces
 	public interface ITemplate
 	{
 		void Save (string filename);
-		string Name {get;}
+		string Name {get; set;}
 	}
 	
 	public interface ITemplateProvider
 	{
 		void CheckDefaultTemplate();
-		string[] TemplatesNames {get;}
+		List<string> TemplatesNames {get;}
 		bool Exists(string name);
 		void Copy (string orig, string copy);
 		void Delete (string templateName);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]