22 lines
650 B
C#
22 lines
650 B
C#
/*******************************************************************************
|
||
* Copyright © 2020 WaterCloud.Framework 版权所有
|
||
* Author: WaterCloud
|
||
* Description: WaterCloud快速开发平台
|
||
* Website:
|
||
*********************************************************************************/
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace WaterCloud.Domain.ViewModel
|
||
{
|
||
public class AuthorizeActionModel
|
||
{
|
||
public string F_Id { set; get; }
|
||
public string F_UrlAddress { set; get; }
|
||
public string F_Authorize { get; set; }
|
||
}
|
||
}
|