20 lines
470 B
C#
20 lines
470 B
C#
using OpenAuth.Repository.Domain.FireManagement;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.ServiceApp.FmFireSiteManage.Response
|
|
{
|
|
public class SiteUserRes:FmSiteUser
|
|
{
|
|
/// <summary>
|
|
/// Desc:用户登录帐号
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string Account { get; set; }
|
|
}
|
|
}
|