yavsc/BookAStar/BookAStar/Model/Workflow/BillingLine.cs

15 lines
330 B
C#

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