20 lines
520 B
C#
20 lines
520 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WorkFlowCheck.Common.DTO
|
|
{
|
|
public class RoleCheckPointDTO
|
|
{
|
|
public int Id { get; set; }
|
|
public int RoleId { get; set; }
|
|
public RoleDTO? RoleDTO { get; set; } = null!;
|
|
public int CheckPointId { get; set; }
|
|
public CheckPointDTO? CheckPointDTO { get; set; } = null!;
|
|
public bool Enabled { get; set; } = false;
|
|
}
|
|
}
|