using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Ropin.Inspection.Model.ViewModel.SYS
{
    public class TSYSRoleHandViewModel: BaseViewModel
    {
        public Guid C_RoleCode { get; set; }
        public Guid C_HandCode { get; set; }
    }
    public class TSYSRoleHandModel : BaseViewModel
    {
        public Guid C_RoleCode { get; set; }
        public string C_RoleName { get; set; }
        public Guid C_HandCode { get; set; }
        public string C_HandName { get; set; }
        public string C_HandNo { get; set; }
        public string C_MachineCode { get; set; }
        public string C_Marker { get; set; }
    }
    public class AddRoleHandModel
    {
        public Guid C_RoleCode { get; set; }
        public List<Guid> HandList { get; set; }
    }
}