53223b0bef
+ Added change language API + Added Role to user info
15 lines
248 B
C#
15 lines
248 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Step.Model.DTOModels
|
|
{
|
|
public class DTORoleModel
|
|
{
|
|
public int Id;
|
|
public string Name;
|
|
}
|
|
}
|