using System; using System.Collections.Generic; #nullable disable namespace YLShipBuildLandMap.Entity { public partial class SysApiScope { public SysApiScope() { SysSystemSysApiScope = new HashSet(); } public string ApiScopeId { get; set; } public string Name { get; set; } public virtual ICollection SysSystemSysApiScope { get; set; } } }