Add XML documentation.

This commit is contained in:
2018-04-12 11:50:02 +01:00
parent c11bb150c5
commit 20ec27eecb
40 changed files with 967 additions and 92 deletions

View File

@@ -7,7 +7,7 @@
//
// --[ Description ] ----------------------------------------------------------
//
// High level representation of a DSP (Digital Signal Processor).
// High level representation of a DSP (Digital Sound Processor).
//
// --[ License ] --------------------------------------------------------------
//
@@ -27,11 +27,15 @@
// ----------------------------------------------------------------------------
// Copyright © 2003-2018 Natalia Portillo
*******************************************************************************/
namespace Cicm.Database.Schemas
{
/// <summary>Digital Sound Processor</summary>
public class Dsp
{
public int id;
/// <summary>Name</summary>
public string DSP;
/// <summary>ID</summary>
public int id;
}
}