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.
17 lines
424 B
C#
17 lines
424 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace LANCommander.Launcher.Data.Models
|
|
{
|
|
public abstract class BaseModel
|
|
{
|
|
[Key]
|
|
public Guid Id { get; set; }
|
|
|
|
[Display(Name = "Created On")]
|
|
public DateTime CreatedOn { get; set; }
|
|
|
|
[Display(Name = "Updated On")]
|
|
public DateTime UpdatedOn { get; set; }
|
|
}
|
|
}
|