Click here to Skip to main content
15,885,914 members
Articles / Programming Languages / C#

CooksMate

Rate me:
Please Sign up or sign in to vote.
3.32/5 (8 votes)
21 Jan 2008GPL32 min read 56.2K   1K   23  
A simple program to help get the timing of a roast dinner
/*
 * Created by SharpDevelop.
 * User: andy
 * Date: 20/01/2008
 * Time: 14:22
 * 
 * To change this template use Tools | Options | Coding | Edit Standard Headers.
 */

using System;

namespace uk.org.aspellclark.cooksmate
{
	/// <summary>
	/// Description of Constants.
	/// </summary>
	public static class Constants
	{
		//recipe tags
		public const string XML_TAG_RECIPES = "Recipes";
		public const string XML_TAG_RECIPE = "Recipe";
		public const string XML_TAG_NAME = "Name";
		public const string XML_TAG_ACTIONS = "Actions";
		public const string XML_TAG_SERVE_TIME = "ServeTime";
		public const string XML_TAG_NOTES = "Notes";
		
		//action step tags
		public const string XML_TAG_ACTION = "Action";
		public const string XML_TAG_SEQ_NBR = "SeqNbr";
		public const string XML_TAG_MINSDURATION = "minsDuration";
		public const string XML_TAG_WEIGHTGRAMS = "weightGrams";
		public const string XML_TAG_MINSPERKILO = "minsPerKilo";
		public const string XML_TAG_MINSSTANDING = "minsStanding";
		public const string XML_TAG_TYPE = "Type";
		
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior) Airbus Defense and Space
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions