22 lines
673 B
C#
22 lines
673 B
C#
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();
|
|
}
|
|
} |