blob: de686469b2f11ea2b9b7f21d1c0efa47819dd3e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using Tango.DAL.Remote.DB;
namespace Tango.Integration.Observables
{
[Table("SYNC_CONFIGURATIONS")]
public partial class SyncConfiguration : ObservableEntity<SyncConfiguration>
{
/// <summary>
/// Initializes a new instance of the <see cref="SyncConfiguration" /> class.
/// </summary>
public SyncConfiguration() : base()
{
}
}
}
|