Init
This commit is contained in:
14
SocialPub.ClientModels/User/Avatar/InsertAvatarForm.cs
Normal file
14
SocialPub.ClientModels/User/Avatar/InsertAvatarForm.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SocialPub.ClientModels.User.Avatar
|
||||
{
|
||||
[JsonSerializable(typeof(InsertAvatarForm))]
|
||||
public class InsertAvatarForm
|
||||
{
|
||||
}
|
||||
}
|
14
SocialPub.ClientModels/User/Avatar/UpdateAvatarForm.cs
Normal file
14
SocialPub.ClientModels/User/Avatar/UpdateAvatarForm.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SocialPub.ClientModels.User.Avatar
|
||||
{
|
||||
[JsonSerializable(typeof(UpdateAvatarForm))]
|
||||
public class UpdateAvatarForm
|
||||
{
|
||||
}
|
||||
}
|
14
SocialPub.ClientModels/User/Avatar/UpdateAvatarSettings.cs
Normal file
14
SocialPub.ClientModels/User/Avatar/UpdateAvatarSettings.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SocialPub.ClientModels.User.Avatar
|
||||
{
|
||||
[JsonSerializable(typeof(UpdateAvatarSettings))]
|
||||
public class UpdateAvatarSettings
|
||||
{
|
||||
}
|
||||
}
|
16
SocialPub.ClientModels/User/Avatar/ViewAvatar.cs
Normal file
16
SocialPub.ClientModels/User/Avatar/ViewAvatar.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SocialPub.ClientModels.User.Avatar
|
||||
{
|
||||
[JsonSerializable(typeof(ViewAvatar))]
|
||||
public class ViewAvatar
|
||||
{
|
||||
|
||||
public ViewAvatarSettings Settings { get; set; }
|
||||
}
|
||||
}
|
12
SocialPub.ClientModels/User/Avatar/ViewAvatarSettings.cs
Normal file
12
SocialPub.ClientModels/User/Avatar/ViewAvatarSettings.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SocialPub.ClientModels.User.Avatar
|
||||
{
|
||||
public class ViewAvatarSettings
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user