using System; using System.Collections.Generic; namespace rockfishCore.Models { public partial class TextTemplate { public long Id { get; set; } public string Name { get; set; } public string Template { get; set; } } }