aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Observables/Entities/SyncConfiguration.cs
blob: 0f2cc8e646054d68dbce5900828a3036d8e55c6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Xml.Serialization;
using Newtonsoft.Json;
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()
        {
        }
    }
}