12 lines
460 B
C#
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 });
|
|
}
|