yavsc/YavscLib/Billing/IEstimate.cs

16 lines
471 B
C#
Raw Normal View History

2017-03-02 23:47:44 +01:00
namespace YavscLib.Workflow
2016-10-07 12:49:24 +02:00
{
using System.Collections.Generic;
public interface IEstimate
{
List<string> AttachedFiles { get; set; }
List<string> AttachedGraphics { get; }
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; }
}
}