personaforge/PersonaForge/PersonaProfile.cs
2025-04-29 03:19:23 -04:00

12 lines
460 B
C#

namespace PersonaForge;
public class PersonaProfile
{
public string Name { get; set; } = string.Empty;
public string Archetype { get; set; } = string.Empty;
// Fandom Wiki calls them "Qualities," but I use the term "Traits" internally
public PersonalityTraits Qualities { get; set; } = new();
public static string ToJson(PersonaProfile profile) => JsonSerializer.Serialize(profile, new JsonSerializerOptions { WriteIndented = true });
}