using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Prototype { class BasicWebPrototype : Prototype { public BasicWebPrototype() { WebTemplate = File.ReadAllText("basic.template"); } public override Prototype Clone() { return (Prototype)this.MemberwiseClone(); } } }