27 lines
844 B
C#
27 lines
844 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using BS.Shared;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class BuchungsExport : BeWoEntityBase
|
|
{
|
|
public static string PropertyName_Export = "Export";
|
|
public static string PropertyName_Datum = "Datum";
|
|
public static string PropertyName_Name = "Name";
|
|
public static string PropertyName_FileName = "FileName";
|
|
public static string PropertyName_Parameter = "Parameter";
|
|
|
|
public BuchungsExport()
|
|
{
|
|
_Tid = TableID.BuchungsExport;
|
|
}
|
|
|
|
public virtual DateTime Datum { get; set; }
|
|
public virtual string Name { get; set; }
|
|
public virtual string FileName { get; set; }
|
|
public virtual string Parameter { get; set; }
|
|
public virtual string Export { get; set; }
|
|
}
|
|
} |