5 lines
85 B
Text
5 lines
85 B
Text
|
public interface IOrder
|
||
|
{
|
||
|
DateTime Purchased { get; }
|
||
|
decimal Cost { get; }
|
||
|
}
|