Files
WatchIt/WatchIt.Common/WatchIt.Common.Model/Accounts/AccountProfileBackgroundRequest.cs

24 lines
372 B
C#
Raw Normal View History

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