Files

11 lines
243 B
C#
Raw Permalink 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
}