namespace Yavsc.Interfaces { using System.Collections.Generic; using Yavsc.Models.Billing; public interface IEstimate { List AttachedFiles { get; set; } List AttachedGraphics { get; } List Bill { get; set; } string ClientId { get; set; } long? CommandId { get; set; } string CommandType { get; set; } string Description { get; set; } long Id { get; set; } string OwnerId { get; set; } int? Status { get; set; } string Title { get; set; } } }