FormatStringToken.cs 341 B

123456789101112131415
  1. namespace Abp.Text.Formatting
  2. {
  3. internal class FormatStringToken
  4. {
  5. public string Text { get; private set; }
  6. public FormatStringTokenType Type { get; private set; }
  7. public FormatStringToken(string text, FormatStringTokenType type)
  8. {
  9. Text = text;
  10. Type = type;
  11. }
  12. }
  13. }