routine update

This commit is contained in:
yubao
2018-03-20 23:15:09 +08:00
parent 1a880c0daf
commit 33f02fdeec
9 changed files with 202 additions and 246 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Flow
{
public class FlowLine
{
public string id { get; set; }
public string type { get; set; }
public string from { get; set; }
public string to { get; set; }
public string name { get; set; }
public bool dash { get; set; }
}
}