refactor: Projektdateien migriert. Cloud-NuGet-Pakete durch lokale NuGet-Projekte ersetzt.
This commit is contained in:
23
DAL/Models/Entities/WebApp.cs
Normal file
23
DAL/Models/Entities/WebApp.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using HRD.WebApi.DAL;
|
||||
|
||||
namespace DAL.Models.Entities
|
||||
{
|
||||
public partial class WebApp : BaseEntity
|
||||
{
|
||||
public int WebAppId { get; set; }
|
||||
public string WebAppName { get; set; }
|
||||
public string WebAppLinkLive { get; set; }
|
||||
public string WebAppLinkDev { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
public string AdWebAppName { get; set; }
|
||||
|
||||
//generic Id
|
||||
public override int GetEntityId() => WebAppId;
|
||||
|
||||
//generic ToString()
|
||||
public override string ToString() => $"WebAppId: {GetEntityId()}; Name: {WebAppName}";
|
||||
|
||||
//generic EntityInfo()
|
||||
public override string EntityInfo() => base.EntityInfo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user