19 lines
461 B
C#
19 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sinvo.EplanHpD.Plugin.Service.Model
|
|
{
|
|
public class UserInfo
|
|
{
|
|
public string GUID { get; set; }
|
|
public string Name { get; set; }
|
|
public string ID { get; set; }
|
|
public string Role { get; set; }
|
|
public string Group { get; set; }
|
|
public string ServerUrl { get; set; }
|
|
}
|
|
}
|