Created
August 15, 2022 03:53
-
-
Save MahdiKarimipour/ee265dd5fab8fae345547e22110cdb4d to your computer and use it in GitHub Desktop.
Partial C# Class for T4 Templates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public partial class MessageReceivedTemplate | |
{ | |
private TemplateModel Model { get; set; } | |
public MessageReceivedTemplate(string name) | |
{ | |
Model = new TemplateModel() | |
{ | |
Name = name, | |
}; | |
} | |
private class TemplateModel | |
{ | |
public string Name { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment