using System.Collections.Generic; namespace Yavsc.Billing { public interface IBillable { string Description { get; set; } List GetBillItems(); long Id { get; set; } } }