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,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Dtos.Group
{
public class Update_GroupDto
{
public int ID { get; set; }
public string Name { get; set; }
public byte[]? img { get; set; }
public string? Info { get; set; }
}
}