using System; using PetaPoco; using Sony.Filtr.Contracts.Definitions; namespace Sony.Filtr.PlaylistSynchronization.Data { [TableName("tblPlaylistSynchronizationTrack")] [PrimaryKey("Id", autoIncrement = true)] public class SynchronizationTrack { public int Id { get; set; } public string ISRC { get; set; } public ServiceType ServiceType { get; set; } public string TrackId { get; set; } [Column(ForceToUtc = true)] public DateTime MatchDate { get; set; } public TrackSource Source { get; set; } } }