implémente l'interface serveur
This commit is contained in:
parent
efa6e411e4
commit
b5a31632a9
1 changed files with 9 additions and 4 deletions
|
|
@ -1,15 +1,20 @@
|
|||
|
||||
using ZicMoove.Interfaces;
|
||||
using System;
|
||||
using System;
|
||||
|
||||
namespace ZicMoove.Model.Workflow
|
||||
{
|
||||
public class BillingLine : IBillingLine
|
||||
using YavscLib.Billing;
|
||||
public class BillingLine : ICommandLine
|
||||
{
|
||||
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; }
|
||||
|
||||
public long EstimateId { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue