123456789101112131415161718192021222324252627282930 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// Sys_User_Sys_Role
- /// </summary>
- public partial class Sys_User_Sys_Role
- {
- /// <summary>
- /// UserID
- /// </summary>
- public System.Guid UserID { get; set; }
- /// <summary>
- /// RoleID
- /// </summary>
- public System.Guid RoleID { get; set; }
- }
- }
|