using System; using System.Collections.Generic; using System.Text; namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting { public class UserRoleView { public System.Guid? RoleID { get; set; } public System.Guid? UserID { get; set; } public string LoginID { get; set; } public string Name { get; set; } public string RoleName { get; set; } } }