Files
yavsc/ZicMoove/ZicMoove/Interfaces/IBillingLine.cs
2017-01-26 13:00:31 +01:00

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; }
}
}