yavsc/src/Yavsc.Abstract/Billing/IEstimate.cs
Paul Schneider 40e8e08690 reorg
2026-02-28 21:17:54 +00:00

18 lines
463 B
C#

namespace Yavsc
{
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; }
}
}