Updated DB Schema and added new initial create

This commit is contained in:
2019-01-30 22:49:01 +01:00
parent 273b960979
commit 15e2a650b9
14 changed files with 188 additions and 84 deletions

View File

@@ -8,20 +8,26 @@ namespace Tv7Playlist.Data
public int Position { get; set; }
public int TrackNumber { get; set; }
public int ChannelNumberImport { get; set; }
public int TrackNumberOverride { get; set; }
public int ChannelNumberExport { get; set; }
public string Name { get; set; }
public string NameOverride { get; set; }
public string EpgMatchName { get; set; }
public string UrlProxy { get; set; }
public string Url { get; set; }
public string UrlOriginal { get; set; }
public string LogoUrl { get; set; }
public bool IsAvailable { get; set; }
public bool IsEnabled { get; set; }
public DateTime Created { get; set; }
public DateTime Modified { get; set; }
}
}