mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-09 15:18:00 +08:00
16 lines
385 B
C#
16 lines
385 B
C#
![]() |
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace OpenAuth.Domain
|
||
|
{
|
||
|
public partial class PageElement
|
||
|
{
|
||
|
public int Id { get; set; }
|
||
|
public string DomId { get; set; }
|
||
|
public string Name { get; set; }
|
||
|
public int Type { get; set; }
|
||
|
public int ModuleId { get; set; }
|
||
|
public string Remark { get; set; }
|
||
|
}
|
||
|
}
|