yavsc/Yavsc/Interfaces/Workflow/IEstimate.cs

19 lines
584 B
C#
Raw Normal View History

2016-10-07 12:49:24 +02:00
namespace Yavsc.Interfaces
{
using System.Collections.Generic;
2016-11-04 13:55:48 +01:00
using Yavsc.Interfaces.Workflow;
2016-10-07 12:49:24 +02:00
using Yavsc.Models.Billing;
public interface IEstimate
{
List<string> AttachedFiles { get; set; }
List<string> AttachedGraphics { get; }
List<CommandLine> 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; }
string Title { get; set; }
}
}