EnVisageOnline/Main/Source/EnVisage/WorkFlowRole.cs

28 lines
864 B
C#

//------------------------------------------------------------------------------
// <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 EnVisage
{
using System;
using System.Collections.Generic;
public partial class WorkFlowRole
{
public WorkFlowRole()
{
this.User2WorkFlowRole = new HashSet<User2WorkFlowRole>();
}
public System.Guid Id { get; set; }
public string RoleName { get; set; }
public virtual ICollection<User2WorkFlowRole> User2WorkFlowRole { get; set; }
}
}