using System;
using System.Collections.Generic;
using System.Text;
namespace GreenTree.Strohrmann.ERP.Core.Domain.Rights
{
public class UserPolicy
{
///
/// Policy name
///
public string PolicyName { get; set; }
///
/// Role Id
///
public int UserId { get; set; }
///
/// Role
///
public virtual User User { get; set; }
}
}