Fixes latest commit

main
Paul Schneider 9 years ago
parent 84cde4dce8
commit 7c48ae849e
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…