updated character model to include bio. added seed data for character bio

This commit is contained in:
StevanFreeborn
2022-06-25 22:40:42 -05:00
parent 415aa4b215
commit b67fcbbd9d
2 changed files with 46 additions and 20 deletions
+6
View File
@@ -71,5 +71,11 @@ namespace server.Models
/// </summary>
[BsonElement("image")]
public string? Image { get; set; }
/// <summary>
/// A brief bio of the character.
/// </summary>
[BsonElement("bio")]
public string? Bio { get; set; }
}
}