to see the activity picture, at first launch
This commit is contained in:
parent
73899657b0
commit
4d9cf47612
2 changed files with 12 additions and 6 deletions
|
|
@ -1,10 +1,11 @@
|
|||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using YavscLib;
|
||||
using XLabs.Forms.Mvvm;
|
||||
|
||||
namespace ZicMoove.Model.Workflow
|
||||
{
|
||||
public class Activity : IActivity
|
||||
using YavscLib;
|
||||
public class Activity : ViewModel, IActivity
|
||||
{
|
||||
public string Code
|
||||
{
|
||||
|
|
@ -74,6 +75,11 @@ namespace ZicMoove.Model.Workflow
|
|||
get;
|
||||
set;
|
||||
}
|
||||
public string LocalPhoto { get; set; }
|
||||
private string photo;
|
||||
|
||||
public string LocalPhoto {
|
||||
get { return photo; }
|
||||
set { SetProperty<string>(ref photo, value);
|
||||
} }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue