yavsc/Yavsc.Abstract/Billing/IEstimate.cs

18 lines
463 B
C#
Raw Normal View History

2017-05-27 16:22:58 +02:00
namespace Yavsc
2016-10-07 12:49:24 +02:00
{
using System.Collections.Generic;
2017-06-08 00:26:29 +02:00
public interface IEstimate
2016-10-07 12:49:24 +02:00
{
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; }
2017-03-03 01:17:00 +01:00
2016-10-07 12:49:24 +02:00
}
2017-05-27 16:22:58 +02:00
}