15 lines
202 B
C#
15 lines
202 B
C#
using System;
|
|
using SalesCatalog.Model;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace SalesCatalog.XmlImplementation
|
|
{
|
|
[XmlRoot]
|
|
public class XmlCatalog : Catalog
|
|
{
|
|
public XmlCatalog ()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|