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
|
// Markdown expected
|
||||||
public string Description { get; set; }
|
public string Description { get; set; }
|
||||||
public string Title { get; set; }
|
public string Title { get; set; }
|
||||||
public IList<BillingLine> Bill { get; set; }
|
public List<BillingLine> Bill { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// List of attached graphic files
|
/// List of attached graphic files
|
||||||
/// to this estimate, as relative pathes to
|
/// to this estimate, as relative pathes to
|
||||||
|
|
@ -23,7 +23,7 @@ namespace BookAStar.Model.Workflow
|
||||||
/// In db, they are separated by <c>:</c>
|
/// In db, they are separated by <c>:</c>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IList<string> AttachedGraphics { get; set; }
|
public List<string> AttachedGraphics { get; set; }
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public string AttachedGraphicsString
|
public string AttachedGraphicsString
|
||||||
{
|
{
|
||||||
|
|
@ -37,7 +37,7 @@ namespace BookAStar.Model.Workflow
|
||||||
/// In db, they are separated by <c>:</c>
|
/// In db, they are separated by <c>:</c>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IList<string> AttachedFiles { get; set; }
|
public List<string> AttachedFiles { get; set; }
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public string AttachedFilesString
|
public string AttachedFilesString
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue