mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-17 10:42:08 +08:00
14 lines
322 B
C#
14 lines
322 B
C#
using System;
|
|
|
|
namespace OpenAuth.Domain
|
|
{
|
|
public partial class sysdiagram
|
|
{
|
|
public string name { get; set; }
|
|
public int principal_id { get; set; }
|
|
public int diagram_id { get; set; }
|
|
public Nullable<int> version { get; set; }
|
|
public byte[] definition { get; set; }
|
|
}
|
|
}
|