using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace IM_API.Models;
public partial class Role
{
public int Id { get; set; }
///
/// 角色名称
///
public string Name { get; set; } = null!;
///
/// 角色描述
///
public string Description { get; set; } = null!;
///
/// 创建时间
///
[Column(TypeName = "datetimeoffset")]
public DateTimeOffset Created { get; set; }
public virtual ICollection Admins { get; set; } = new List();
public virtual ICollection Permissionaroles { get; set; } = new List();
}