Fixes latest commit
This commit is contained in:
parent
19bd9ddb8e
commit
60069a0b83
1 changed files with 3 additions and 3 deletions
|
|
@ -15,7 +15,7 @@ namespace BookAStar.Model.Workflow
|
|||
// Markdown expected
|
||||
public string Description { get; set; }
|
||||
public string Title { get; set; }
|
||||
public IList<BillingLine> Bill { get; set; }
|
||||
public List<BillingLine> Bill { get; set; }
|
||||
/// <summary>
|
||||
/// List of attached graphic files
|
||||
/// to this estimate, as relative pathes to
|
||||
|
|
@ -23,7 +23,7 @@ namespace BookAStar.Model.Workflow
|
|||
/// In db, they are separated by <c>:</c>
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public IList<string> AttachedGraphics { get; set; }
|
||||
public List<string> AttachedGraphics { get; set; }
|
||||
[JsonIgnore]
|
||||
public string AttachedGraphicsString
|
||||
{
|
||||
|
|
@ -37,7 +37,7 @@ namespace BookAStar.Model.Workflow
|
|||
/// In db, they are separated by <c>:</c>
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public IList<string> AttachedFiles { get; set; }
|
||||
public List<string> AttachedFiles { get; set; }
|
||||
[JsonIgnore]
|
||||
public string AttachedFilesString
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue