12 lines
252 B
C#
12 lines
252 B
C#
using System;
|
|
|
|
namespace ZicMoove.Interfaces
|
|
{
|
|
public interface IBillingLine
|
|
{
|
|
int Count { get; set; }
|
|
string Description { get; set; }
|
|
TimeSpan Duration { get; set; }
|
|
decimal UnitaryCost { get; set; }
|
|
}
|
|
} |