19 lines
409 B
C#
19 lines
409 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Step.Model.DatabaseModels
|
|
{
|
|
[Table("role")]
|
|
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; }
|
|
}
|
|
} |