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

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; }
}
}