5b40cf6fb0
* Added language support api * Added canRead canWrite to functions Access api
20 lines
487 B
C#
20 lines
487 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 int RoleId { get; set; }
|
|
}
|
|
}
|