* start with group permissions implementation * refactor group dto stuff * adjustments to api as necessary from client * more api refactor for UserData * use implicit usings and file scoped namespaces * fix userpermissionsextensions * fix extenions * add more comparers * adjust comparers * remove admin stuff (tbd migration to discord bot) * adjust extensions * code style for api --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
8 lines
183 B
C#
8 lines
183 B
C#
namespace MareSynchronos.API.Dto.Files;
|
|
|
|
public interface ITransferFileDto
|
|
{
|
|
string Hash { get; set; }
|
|
bool IsForbidden { get; set; }
|
|
string ForbiddenBy { get; set; }
|
|
} |