verifaction

This commit is contained in:
mmrbnjd
2025-06-28 16:13:40 +03:30
parent c0b47129d4
commit 22fe43979a
10 changed files with 121 additions and 18 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Dtos.Exper
{
public class ChangeAvailable_GroupDto
{
//From CompanyManager
public int ID { get; set; }
public bool Available { get; set; }
}
}