verifaction
This commit is contained in:
15
Common/Dtos/Group/ChangeAvailable_GroupDto.cs
Normal file
15
Common/Dtos/Group/ChangeAvailable_GroupDto.cs
Normal 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; }
|
||||
}
|
||||
}
|
17
Common/Dtos/Group/Update_GroupDto.cs
Normal file
17
Common/Dtos/Group/Update_GroupDto.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user