Files
Hushian/Common/Dtos/Group/Update_GroupDto.cs

18 lines
357 B
C#
Raw Normal View History

2025-06-28 16:13:40 +03:30
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; }
}
}