2024-11-05 20:04:15 +01:00
|
|
|
using System.Diagnostics.CodeAnalysis;
|
2024-11-06 00:11:45 +01:00
|
|
|
using System.Text.Json.Serialization;
|
2024-11-05 20:04:15 +01:00
|
|
|
|
|
|
|
|
namespace WatchIt.Common.Model.Accounts;
|
|
|
|
|
|
|
|
|
|
public class AccountProfileBackgroundRequest
|
|
|
|
|
{
|
|
|
|
|
#region PROPERTIES
|
|
|
|
|
|
2024-11-06 00:11:45 +01:00
|
|
|
[JsonPropertyName("id")]
|
2024-11-05 20:04:15 +01:00
|
|
|
public required Guid Id { get; set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region CONSTRUCTORS
|
|
|
|
|
|
|
|
|
|
[SetsRequiredMembers]
|
|
|
|
|
public AccountProfileBackgroundRequest(Guid id)
|
|
|
|
|
{
|
|
|
|
|
Id = id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|