2024-07-30 16:19:51 +02:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace WatchIt.Common.Model.Accounts;
|
|
|
|
|
|
|
2024-09-27 19:38:05 +02:00
|
|
|
|
public abstract class AccountProfilePicture : Picture
|
2024-07-30 16:19:51 +02:00
|
|
|
|
{
|
|
|
|
|
|
#region CONSTRUCTORS
|
|
|
|
|
|
|
|
|
|
|
|
[JsonConstructor]
|
|
|
|
|
|
public AccountProfilePicture() {}
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
}
|