mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-12 04:29:28 +08:00
16 lines
301 B
C#
16 lines
301 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.RBAC.Domain.Shared.Identity.Etos
|
|
{
|
|
public class LoginEventArgs
|
|
{
|
|
public long UserId { get; set; }
|
|
public string UserName { get; set; }
|
|
|
|
}
|
|
}
|