mh_lcmk_sms_service/APT.Utility/SessionData.cs

29 lines
625 B
C#
Raw Permalink Normal View History

2024-07-12 16:37:09 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace APT.Utility
{
public class SessionData
{
public int GrantType { get; set; }
public Guid? DataChannelId { get; set; }
public string UserName { get; set; }
public string UserCode { get; set; }
public Guid? DepartmentId { get; set; }
public Guid? UserId { get; set; }
public Guid? OrgId { get; set; }
public Guid? RootOrgId { get; set; }
public string MineType { get; set; }
public string[] DataRule { get; set; }
}
}