Files
cms_thermo_active/Step.Model/DTOModels/DTOUserModel.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

20 lines
494 B
C#

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.DTOModels
{
public class DTOUserModel
{
public int Id { get; set; }
public string Username { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public CultureInfo Language { get; set; }
public DTORoleModel Role { get; set; }
}
}