aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/Entities/SyncConfiguration.cs
blob: 10bcdc95149ba3ecd7866e2c89c7141e068b44ee (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.BL.Entities
{
    [Table("SYNC_CONFIGURATIONS")]
    public partial class SyncConfiguration : ObservableEntity<SyncConfiguration>
    {

        /// <summary>
        /// Initializes a new instance of the <see cref="SyncConfiguration" /> class.
        /// </summary>
        public SyncConfiguration() : base()
        {
        }
    }
}