LANCommander/LANCommander.Server.Services/Models/Snippet.cs

10 lines
208 B
C#
Raw Permalink Normal View History

2024-08-04 18:44:33 -05:00
namespace LANCommander.Server.Models
{
public class Snippet
{
public string Group { get; set; }
public string Name { get; set; }
public string Content { get; set; }
}
}