mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-25 18:58:12 +00:00
13 lines
392 B
C#
13 lines
392 B
C#
namespace PodNoms.Api.Models.ViewModels
|
|
{
|
|
public class ProfileViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string Slug { get; set; }
|
|
public string Email { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public string ProfileImage { get; set; }
|
|
public string ApiKey { get; set; }
|
|
}
|
|
} |