This commit is contained in:
Kwoth 2017-01-02 10:20:52 +01:00
parent b6e0c8c38e
commit 8c6a4cdeb5
3 changed files with 3 additions and 3 deletions

2
.gitmodules vendored
View File

@ -1,4 +1,4 @@
[submodule "Discord.Net"]
path = discord.net
path = Discord.Net
url = https://github.com/Kwoth/Discord.Net
branch = rogue-dev

View File

@ -27,6 +27,6 @@ namespace NadekoBot.Services.Database.Models
[NotMapped]
public ITextChannel Channel { get; set; }
public List<ClashCaller> Bases { get; set; }
public List<ClashCaller> Bases { get; set; } = new List<ClashCaller>();
}
}

View File

@ -7,6 +7,6 @@ namespace NadekoBot.Services.Database.Models
public string Name { get; set; }
public string Author { get; set; }
public ulong AuthorId { get; set; }
public List<PlaylistSong> Songs { get; set; }
public List<PlaylistSong> Songs { get; set; } = new List<PlaylistSong>();
}
}