Client has been renamed to launcher, and thus namespaces and artifact names had to change. The server project has also had some artifacts renamed in order to create a more clear separation of builds. This will break auto-updates before v0.9.0.
14 lines
363 B
C#
14 lines
363 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace LANCommander.Launcher.Data.Models
|
|
{
|
|
public class Company : BaseModel
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public virtual ICollection<Game> PublishedGames { get; set; }
|
|
[JsonIgnore]
|
|
public virtual ICollection<Game> DevelopedGames { get; set; }
|
|
}
|
|
}
|