yavsc/ZicMoove/ZicMoove/Pages/EstimatePages/BillingLine.cs
2017-01-26 13:00:31 +01:00

15 lines
365 B
C#

using ZicMoove.Interfaces;
using System;
namespace ZicMoove.Model.Workflow
{
public class BillingLine : IBillingLine
{
public long Id { get; set; }
public string Description { get; set; }
public TimeSpan Duration { get; set; }
public int Count { get; set; } = 1;
public decimal UnitaryCost { get; set; }
}
}