demo_trade/Data/RemoteData/Entity/Role.cs

14 lines
293 B
C#
Raw Normal View History

2024-10-04 12:41:04 +00:00
using System;
using System.Collections.Generic;
namespace demo_trade.Data.RemoteData.Entity;
public partial class Role
{
public int Roleid { get; set; }
public string Rolename { get; set; } = null!;
public virtual ICollection<User> Users { get; set; } = new List<User>();
}