GroupComment.cs 272 B

12345678910111213
  1. namespace FastReport.Export.Dxf.Groups
  2. {
  3. public class GroupComment : Group<string>
  4. {
  5. #region Public Constructors
  6. public GroupComment(int code, string value) : base(code, value)
  7. {
  8. }
  9. #endregion Public Constructors
  10. }
  11. }