Merge branch 'vnext' of https://github.com/pazof/yavsc.git
This commit is contained in:
commit
076d10d66e
71 changed files with 6705 additions and 385 deletions
|
|
@ -14,7 +14,6 @@ namespace BookAStar.Model.Interfaces
|
|||
string Description { get; set; }
|
||||
long Id { get; set; }
|
||||
string OwnerId { get; set; }
|
||||
int? Status { get; set; }
|
||||
string Title { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -10,6 +10,7 @@ namespace BookAStar.Model
|
|||
public string UserName { get; set; }
|
||||
|
||||
public string Avatar { get; set; }
|
||||
|
||||
public string UserId { get; set; }
|
||||
public int Rate { get; set; }
|
||||
public string EMail { get; set; }
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ namespace BookAStar.Model.Workflow
|
|||
public string CommandType { get; set; }
|
||||
// Markdown expected
|
||||
public string Description { get; set; }
|
||||
public int? Status { get; set; }
|
||||
public string Title { get; set; }
|
||||
public IList<BillingLine> Bill { get; set; }
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -81,21 +81,6 @@ namespace BookAStar.ViewModels
|
|||
}
|
||||
}
|
||||
|
||||
private int? status;
|
||||
[JsonIgnore]
|
||||
public int? Status
|
||||
{
|
||||
get
|
||||
{
|
||||
return Data.Status;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetProperty<int?>(ref status, value, "Status");
|
||||
Data.Status = status;
|
||||
}
|
||||
}
|
||||
private string title;
|
||||
[JsonIgnore]
|
||||
public string Title
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue