Files
cms_thermo_active/Step.Model/DTOModels/DTORoleModel.cs
T
Lucio Maranta 53223b0bef * Refactor and fix machine self-registration into db
+ Added change language API
+ Added Role to user info
2018-01-17 12:35:34 +01:00

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;
}
}