17 lines
340 B
C#
17 lines
340 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static Crm.Core.Domain.Config.SystemEnums;
|
|
|
|
namespace Crm.Core.Domain.Dto.CRM
|
|
{
|
|
public class UserRoleLevelDto
|
|
{
|
|
public decimal Eid { get; set; }
|
|
|
|
public RoleLevel Level { get; set; }
|
|
}
|
|
}
|