mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
10 lines
244 B
C#
10 lines
244 B
C#
namespace Govor.Application.Profiles;
|
|
|
|
public class UserProfile
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Username { get; set; } = string.Empty;
|
|
public string? Description { get; set; }
|
|
public Guid? IconId { get; set; }
|
|
}
|