11 lines
243 B
C#
11 lines
243 B
C#
namespace WatchIt.DTO.Models.Controllers.Accounts.AccountProfileInfo;
|
|
|
|
public class AccountProfileInfoRequest
|
|
{
|
|
#region PROPERTIES
|
|
|
|
public string? Description { get; set; }
|
|
public short? GenderId { get; set; }
|
|
|
|
#endregion
|
|
} |