17 lines
302 B
C#
17 lines
302 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Traffic.Data.Models
|
|||
|
{
|
|||
|
public class AccountRole
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string RoleName { get; set; }
|
|||
|
|
|||
|
public int CreatorId { get; set; }
|
|||
|
|
|||
|
public DateTime CreatedOn { get; set; }
|
|||
|
}
|
|||
|
}
|