8 lines
208 B
C#
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; } = "";
|
|
} |