public SetMoodParams(string characterName, Mood modifier) { this.characterName = characterName; this.modifier = modifier; }
public CharacterMood(int id, string name, Mood mood) { this.Id = id; this.Name = name; this.Mood = mood; }