Files
cms_thermo_active/Step.Model/RoleModel.cs
T
CMS4390\marantalu 2b9f74a1b2 * Added Logger and Exception manager
* Added autocreate database if not exists
2017-12-05 17:21:10 +01:00

23 lines
511 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model
{
[Table("roles")]
public class RoleModel
{
[Key]
[Column("id")]
public int RoleId { get; set; }
[Column("name")]
public string Name { get; set; }
[Column("level")]
public int Level { get; set; }
}
}