Files
WatchIt/WatchIt.DTO/Models/Controllers/Accounts/AccountProfileInfo/AccountProfileInfoRequest.cs

11 lines
243 B
C#
Raw Normal View History

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