Added multi line feature and file upload in the support chat. Started working on snippets

This commit is contained in:
Marcel Baumgartner
2023-05-02 23:58:44 +02:00
parent 825b7be86d
commit af9916d563
10 changed files with 368 additions and 50 deletions

View File

@@ -0,0 +1,8 @@
namespace Moonlight.App.Database.Entities;
public class SupportChatSnippets
{
public int Id { get; set; }
public string Name { get; set; } = "";
public string Description { get; set; } = "";
}