Files
Moonlight/Moonlight/App/Database/Entities/SupportChatSnippets.cs

8 lines
208 B
C#

namespace Moonlight.App.Database.Entities;
public class SupportChatSnippets
{
public int Id { get; set; }
public string Name { get; set; } = "";
public string Description { get; set; } = "";
}