using System; using System.Collections.Generic; namespace Yavsc.Billing { public interface IBillable { string GetDescription (); List GetBillItems(); long Id { get; set; } string ActivityCode { get; set; } string PerformerId { get; set; } string ClientId { get; set; } /// /// Date de validation de la demande par le client /// /// DateTime? ValidationDate { get; } } }