PageRenderTime 39ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/1.31/src/Tests/ExtensionModel/MockExtensionObject4Serializer.cs

#
C# | 44 lines | 21 code | 3 blank | 20 comment | 0 complexity | d17ee8f99dd5d8ff2a62885ee8072a9e MD5 | raw file
Possible License(s): AGPL-1.0, LGPL-2.1
  1. /****************************************************************************************************
  2. Copyright (C) 2010 RapidWebDev Organization (http://rapidwebdev.org)
  3. Author: Eunge, Legal Name: Jian Liu, Email: eunge.liu@RapidWebDev.org
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. ****************************************************************************************************/
  15. using System;
  16. using System.IO;
  17. using System.Configuration;
  18. using System.Drawing;
  19. using System.Data;
  20. using System.Data.SqlClient;
  21. using System.Collections.Generic;
  22. using System.Linq;
  23. using System.Text;
  24. using System.Xml.Linq;
  25. using NUnit.Framework;
  26. using BaoJianSoft.ExtensionModel;
  27. using BaoJianSoft.ExtensionModel.Linq;
  28. namespace BaoJianSoft.Tests.ExtensionModel
  29. {
  30. /// <summary>
  31. /// 用于测试ExtensionObjectSerializer序列化的实体类
  32. /// </summary>
  33. public class MockExtensionObject4Serializer : AbstractExtensionObject
  34. {
  35. public override string ExtensionData { get; set; }
  36. public override Guid ExtensionDataTypeId { get; set; }
  37. }
  38. }