LANCommander/LANCommander.Server/Models/Snippet.cs
2024-08-04 18:44:33 -05:00

9 lines
208 B
C#

namespace LANCommander.Server.Models
{
public class Snippet
{
public string Group { get; set; }
public string Name { get; set; }
public string Content { get; set; }
}
}