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