16 lines
335 B
C#
16 lines
335 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sinvo.EplanHpD.Plugin.DynaClient.Model
|
|
{
|
|
public class UserRole
|
|
{
|
|
//string roleFieldName = "ID|NAME";
|
|
public string ID { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
}
|