Skip to content
Snippets Groups Projects
Commit 29845f34 authored by David Barnes's avatar David Barnes
Browse files

Add IDroid Interface

parent e2f10735
Branches
No related merge requests found
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace cis237assignment3
{
interface IDroid
{
void CalculateTotalCost();
decimal TotalCost { get; set; }
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment